~ubuntu-branches/ubuntu/vivid/lightdm-kde/vivid

« back to all changes in this revision

Viewing changes to kcm/coreconfig.h

  • Committer: Package Import Robot
  • Author(s): Michal Zajac
  • Date: 2012-07-22 19:44:44 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120722194444-aaueaylu3ddnqcth
Tags: 0.2.1-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    class CoreConfig;
27
27
}
28
28
 
 
29
class UsersModel;
 
30
 
29
31
class CoreConfig : public QWidget
30
32
{
31
33
    Q_OBJECT
39
41
Q_SIGNALS:
40
42
    void changed(bool state=true);
41
43
 
 
44
private Q_SLOTS:
 
45
    void onAllowGuestChanged(bool allow);
42
46
private:
43
47
    void loadFromConfig();
44
48
 
 
49
    UsersModel *m_usersModel;
45
50
    Ui::CoreConfig *ui;
46
51
};
47
52