⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 yawpconfig.h

📁 KDE4.1 weather plasmoid
💻 H
字号:
//// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -