-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ecc909d
commit 02df9be
Showing
7 changed files
with
41 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
package kryptonbutterfly.totp.prefs; | ||
|
||
import javax.swing.JFrame; | ||
|
||
import com.google.gson.annotations.Expose; | ||
|
||
import kryptonbutterfly.util.swing.state.WindowState; | ||
|
||
public final class TotpWindowStates | ||
{ | ||
@Expose | ||
public GuiPrefs mainWindow = new GuiPrefs(100, 100, 400, 600, JFrame.NORMAL); | ||
public WindowState mainWindow = new WindowState(100, 100, 400, 600); | ||
|
||
@Expose | ||
public GuiPrefs passwdWindow = new GuiPrefs(100, 100, 300, 120, JFrame.NORMAL); | ||
public WindowState passwdWindow = new WindowState(100, 100, 300, 120); | ||
|
||
@Expose | ||
public GuiPrefs createDialog = new GuiPrefs(100, 100, 400, 350, JFrame.NORMAL); | ||
public WindowState createDialog = new WindowState(100, 100, 400, 350); | ||
|
||
@Expose | ||
public GuiPrefs categoryDialog = new GuiPrefs(100, 100, 400, 600, JFrame.NORMAL); | ||
public WindowState categoryDialog = new WindowState(100, 100, 400, 600); | ||
|
||
@Expose | ||
public GuiPrefs qrScan = new GuiPrefs(100, 100, 640, 400, JFrame.NORMAL); | ||
public WindowState qrScan = new WindowState(100, 100, 640, 400); | ||
|
||
@Expose | ||
public GuiPrefs qrExport = new GuiPrefs(100, 100, 230, 280, JFrame.NORMAL); | ||
public WindowState qrExport = new WindowState(100, 100, 230, 280); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters