summaryrefslogtreecommitdiffstats
path: root/yakuake/src/general_settings.h
blob: 38f66e5e147b4dafc653b0b410e9c9f3431750d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
    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; either version 2 of the License, or
    (at your option) any later version.
*/

/*
  Copyright (C) 2007 Eike Hein <hein@kde.org>
*/


#ifndef GENERAL_SETTINGS_H
#define GENERAL_SETTINGS_H


#include "general_settings_ui.h"


class GeneralSettings : public GeneralSettingsUI
{
    Q_OBJECT
  TQ_OBJECT

    public:
        explicit GeneralSettings(TQWidget* tqparent, const char* name=NULL);
        ~GeneralSettings();


    signals:
        void updateSize(int width, int height, int location);


    private slots:
        void updateWidthSlider(int width);
        void updateWidthSpinbox(int width);

        void updateHeightSlider(int height);
        void updateHeightSpinbox(int height);

        void updateStepsSlider(int height);
        void updateStepsSpinbox(int height);

        void updateLocation(int location);
};


#endif /* GENERAL_SETTINGS_H */