diff options
author | Pierre Ossman <ossman@cendio.se> | 2012-07-05 09:23:03 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2012-07-05 09:23:03 +0000 |
commit | 1c2189b084458ab80f8a93c9a99e5cfd5d2682aa (patch) | |
tree | fb067c7452cd2cbfc582ed08a050fd0a8730fdcf /vncviewer/OptionsDialog.h | |
parent | 275284f3fdb462665e15116bbd0719cfc41a76bb (diff) | |
download | tigervnc-1c2189b084458ab80f8a93c9a99e5cfd5d2682aa.tar.gz tigervnc-1c2189b084458ab80f8a93c9a99e5cfd5d2682aa.zip |
Move the fullscreen option to a separate tab, in preparation for more
screen related options.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4927 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer/OptionsDialog.h')
-rw-r--r-- | vncviewer/OptionsDialog.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vncviewer/OptionsDialog.h b/vncviewer/OptionsDialog.h index 5c90749e..d33ecaad 100644 --- a/vncviewer/OptionsDialog.h +++ b/vncviewer/OptionsDialog.h @@ -50,6 +50,7 @@ protected: void createCompressionPage(int tx, int ty, int tw, int th); void createSecurityPage(int tx, int ty, int tw, int th); void createInputPage(int tx, int ty, int tw, int th); + void createScreenPage(int tx, int ty, int tw, int th); void createMiscPage(int tx, int ty, int tw, int th); static void handleAutoselect(Fl_Widget *widget, void *data); @@ -105,9 +106,11 @@ protected: Fl_Check_Button *systemKeysCheckbox; Fl_Choice *menuKeyChoice; + /* Screen */ + Fl_Check_Button *fullScreenCheckbox; + /* Misc. */ Fl_Check_Button *sharedCheckbox; - Fl_Check_Button *fullScreenCheckbox; Fl_Check_Button *dotCursorCheckbox; }; |