~jonas-drange/ubuntu-system-settings/fix-autopilot-tests

« back to all changes in this revision

Viewing changes to lib/SystemSettings/plugin.h

  • Committer: Alberto Mardegan
  • Date: 2013-05-08 08:55:54 UTC
  • Revision ID: alberto.mardegan@canonical.com-20130508085554-jjcanw47dt26e5li
Change directory structure: add libSystemSettings

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define SYSTEM_SETTINGS_PLUGIN_H
23
23
 
24
24
#include <QObject>
 
25
#include <QUrl>
25
26
 
26
27
class QFileInfo;
27
28
 
36
37
    ~Plugin();
37
38
 
38
39
    QString displayName() const;
39
 
    QString iconName() const;
 
40
    QUrl icon() const;
40
41
    QString category() const;
41
42
    int priority() const;
42
43
    QString translations() const;
43
44
    QStringList keywords() const;
44
 
    bool visible() const;
 
45
    bool isVisible() const;
45
46
 
46
47
private:
47
48
    PluginPrivate *d_ptr;