yawpconfig.h

来自「KDE4.1 weather plasmoid」· C头文件 代码 · 共 56 行

H
56
字号
//// C++ Implementation: yawp//// Description:////// Author: Ruan <ruans@kr8.co.za>, (C) 2008//// Copyright: Do what you want, whenever you want.////#ifndef YAWP_CONFIG_H#define YAWP_CONFIG_H#include "ui_yawpconfigdialog.h"class YaWP;//-----------------------------------------------------------------------------/** Configuration window.	@author Ruan <ruans@kr8.co.za> */class YaWPConfigDialog : public KDialog, public Ui::YaWPConfigDialog {    Q_OBJECTpublic:    YaWPConfigDialog(YaWP * applet);    ~YaWPConfigDialog();    void setInterval(int inter);    int interval() const;    void setTheme(QString theme);    QString theme() const;    void setCity(QString city);    QString city() const;    void setCountry(QString country);    QString country() const;    void setUnits(int units);    int units() const;signals:        void save();protected slots:    void buttonClicked( KDialog::ButtonCode button );private:    YaWP 	 *m_applet;};#endif //YAWP_CONFIG_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?