~ubuntu-branches/ubuntu/vivid/psi/vivid

« back to all changes in this revision

Viewing changes to src/options/opt_appearance.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
};
24
24
 
25
25
class QWidget;
26
 
struct Options;
27
26
class QButtonGroup;
28
27
class QLineEdit;
29
28
 
42
41
        ~OptionsTabAppearanceMisc();
43
42
 
44
43
        QWidget *widget();
45
 
        void applyOptions(Options *opt);
46
 
        void restoreOptions(const Options *opt);
 
44
        void applyOptions();
 
45
        void restoreOptions();
47
46
 
48
47
private slots:
49
48
        void setData(PsiCon *, QWidget *);
50
49
 
51
50
private:
52
51
        QWidget *w, *parentWidget;
53
 
        Options *o;
54
52
};
55
53
 
56
54
class OptionsTabAppearanceGeneral : public OptionsTab
61
59
        ~OptionsTabAppearanceGeneral();
62
60
 
63
61
        QWidget *widget();
64
 
        void applyOptions(Options *opt);
65
 
        void restoreOptions(const Options *opt);
 
62
        void applyOptions();
 
63
        void restoreOptions();
66
64
 
67
65
private slots:
68
66
        void setData(PsiCon *, QWidget *);
74
72
        QButtonGroup *bg_color;
75
73
        FontLabel *le_font[4];
76
74
        QButtonGroup *bg_font;
77
 
        Options *o;
78
75
};
79
76
 
80
77
#endif