📄 welcomedialog.h
字号:
/*************************************************************************** welcomedialog.h - description ------------------- begin : Tue Jun 10 22:18:34 BST 2003 copyright : (C) 2003-2005 by KSmoothDock team email : dangvd@yahoo.com ***************************************************************************//*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * ***************************************************************************/ #ifndef WELCOMEDIALOG_H#define WELCOMEDIALOG_H#include <qdialog.h>class QVBoxLayout;class QHBoxLayout;class QGridLayout;class QLabel;class QButtonGroup;class QRadioButton;class QCheckBox;class QPushButton;class QGroupBox;class QComboBox;#include "constants.h"class WelcomeDialog : public QDialog{ Q_OBJECTpublic: WelcomeDialog( QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0 ); ~WelcomeDialog(); ZoomMode getZoomMode(); int isShowingPager(); int isShowingTaskbar(); int isShowingClock(); int isShowingWindowsAllDesktops(); int isAutohide(); PanelPosition getPosition();public slots: virtual void pushButton3_clicked(); virtual void cbTaskbar_stateChanged( int );protected slots: virtual void languageChange();private: QLabel* textLabel2; QGroupBox* groupBox1; QButtonGroup* buttonGroup2; QRadioButton* rbNormalZoom; QLabel* textLabel3; QLabel* textLabel4; QRadioButton* rbParabolicZoom; QGroupBox* groupBox2; QCheckBox* cbClock; QCheckBox* cbPager; QLabel* textLabel6; QCheckBox* cbQuickLaunch; QLabel* textLabel7; QLabel* textLabel2_3; QCheckBox* cbShowWinAllDesks; QLabel* textLabel1_3; QLabel* textLabel9; QCheckBox* cbTaskbar; QPushButton* pushButton3; QLabel* textLabel1; QGroupBox* groupBox3; QLabel* lbAutohide; QCheckBox* cbAutohide; QLabel* lbPosition; QComboBox* cbbPosition;};#endif // WELCOMEDIALOG_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -