blob: 61ed6601a92f0b31bbd10175aee004f2c730108d (
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 <[email protected]>
*/
#ifndef GENERAL_SETTINGS_H
#define GENERAL_SETTINGS_H
#include "general_settings_ui.h"
class GeneralSettings : public GeneralSettingsUI
{
TQ_OBJECT
public:
explicit GeneralSettings(TQWidget* parent, 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 */
|