Changeset 181 for smplayer/trunk/src/preferencesdialog.h
- Timestamp:
- Aug 31, 2016, 5:31:04 PM (9 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 179
- Property svn:mergeinfo changed
-
smplayer/trunk/src/preferencesdialog.h
r176 r181 28 28 */ 29 29 30 class QTextBrowser;30 class InfoWindow; 31 31 class QPushButton; 32 32 … … 51 51 { 52 52 Q_OBJECT 53 Q_PROPERTY(bool iconMode READ isIconMode WRITE setIconMode) 53 54 54 55 public: … … 78 79 bool requiresRestart(); 79 80 81 void setIconMode(bool); 82 bool isIconMode() { return icon_mode; }; 83 80 84 public slots: 81 85 void showSection(Section s); … … 103 107 PrefInput * page_input; 104 108 PrefPlaylist * page_playlist; 109 #ifdef TV_SUPPORT 105 110 PrefTV * page_tv; 111 #endif 106 112 PrefUpdates * page_updates; 107 113 PrefNetwork * page_network; … … 112 118 #endif 113 119 114 QTextBrowser* help_window;120 InfoWindow * help_window; 115 121 116 122 private: … … 119 125 QPushButton * applyButton; 120 126 QPushButton * helpButton; 127 128 bool icon_mode; 121 129 }; 122 130
Note:
See TracChangeset
for help on using the changeset viewer.