?? kdepreferencesdialog.h
字號:
/*************************************************************************** kdepreferencesdialog.h - description ------------------- begin : Sun Jul 21 2002 copyright : (C) 2002 by chris email : chris@tux.teyssier.org ***************************************************************************//*************************************************************************** * * * 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. * * * ***************************************************************************/#include <kdialogbase.h>#include "celestiacore.h"class QLabel;class QSpinBox;class QComboBox;class QCheckBox;class KKeyChooser;class KdeApp;class KdePreferencesDialog : public KDialogBase {Q_OBJECTpublic: KdePreferencesDialog( QWidget* parent, CelestiaCore* core ); ~KdePreferencesDialog();public slots: void slotOk(); void slotApply(); void slotCancel(); void setNow(); void ltSubstract(); void slotTimeHasChanged(); void slotAmbientLightLevel(int l); void slotFaintestVisible(int m); void slotRenderPath(int); void slotDistanceToScreen(int); void slotMinFeatureSize(int);protected: CelestiaCore* appCore; KdeApp* parent; KKeyChooser* keyChooser; int savedRendererFlags; int savedLabelMode; int savedOrbitMask; int savedAmbientLightLevel; int savedFaintestVisible; int savedHudDetail; int savedDisplayLocalTime; int savedRenderPath; int savedDistanceToScreen; uint32 savedLocationFilter; int savedMinFeatureSize; bool timeHasChanged; QComboBox* displayTimezoneCombo; QComboBox* setTimezoneCombo; QSpinBox *YSpin, *MSpin, *DSpin; QSpinBox *hSpin, *mSpin, *sSpin; QSpinBox *dtsSpin; QComboBox *renderPathCombo; QLabel* renderPathLabel; QLabel* ambientLabel, *faintestLabel, *minFeatureSizeLabel; void setTime(double d); double getTime() const; void setRenderPathLabel();};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -