forked from openkylin/quarkai
87 lines
2.6 KiB
C++
87 lines
2.6 KiB
C++
/*
|
|
* Copyright (C) 2013 ~ 2015 National University of Defense Technology(NUDT) & Kylin Ltd.
|
|
*
|
|
* Authors:
|
|
* Kobe Lee xiangli@ubuntukylin.com/kobe24_lixiang@126.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; version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef ICONWIDGET_H
|
|
#define ICONWIDGET_H
|
|
|
|
#include <QWidget>
|
|
#include "../component/kylinswitcher.h"
|
|
|
|
class QLabel;
|
|
class QPushButton;
|
|
class QHBoxLayout;
|
|
class QComboBox;
|
|
#include "settingmodulelpage.h"
|
|
|
|
class IconWidget : public SettingModulePage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit IconWidget(QWidget *parent = 0, QString cur_desktop = "");
|
|
~IconWidget();
|
|
void setLanguage();
|
|
void initConnect();
|
|
void initSettingData() Q_DECL_OVERRIDE;
|
|
QString settingModuleName() Q_DECL_OVERRIDE;
|
|
|
|
public slots:
|
|
void changeSwitcherStatus();
|
|
void setIconTheme(QString selectTheme);
|
|
// void setShowDesktopIcons();
|
|
void setComputerIcon();
|
|
void setFolderIcon();
|
|
void setNetworkIcon();
|
|
void setRecycleBinIcon();
|
|
void setDiskIcon();
|
|
|
|
void iconwidget_notify_string(QString key, QString value);
|
|
void iconwidget_notify_bool(QString key, bool value);
|
|
void onReceiveIconThemeList(const QString ¤tTheme, const QStringList &themeList);
|
|
void onReceiveDisplayIconValue(bool computer, bool folder, bool network, bool recycle, bool disk);
|
|
|
|
signals:
|
|
void requestIconData();
|
|
void resetIconTheme(const QString &theme);
|
|
void displayComputerIcon(bool b);
|
|
void displayFolderIcon(bool b);
|
|
void displayNetworkIcon(bool b);
|
|
void displayRecycleBinIcon(bool b);
|
|
void displayDiskIcon(bool b);
|
|
|
|
private:
|
|
QString desktop;
|
|
QStringList iconlist;
|
|
QLabel *theme_label;
|
|
// QLabel *show_label;
|
|
QLabel *computer_label;
|
|
QLabel *folder_label;
|
|
QLabel *network_label;
|
|
QLabel *recycle_label;
|
|
QLabel *disk_label;
|
|
QComboBox *theme_combo;
|
|
// KylinSwitcher *show_switcher;
|
|
KylinSwitcher *computer_switcher;
|
|
KylinSwitcher *folder_switcher;
|
|
KylinSwitcher *network_switcher;
|
|
KylinSwitcher *recycle_switcher;
|
|
KylinSwitcher *disk_switcher;
|
|
};
|
|
|
|
#endif // ICONWIDGET_H
|