summaryrefslogtreecommitdiffstats
path: root/quanta/components/csseditor/specialsb.h
blob: 1536c5fec88b4c10e5d33d9eefb95ee045945e1f (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/***************************************************************************
                          specialsb.h  -  description
                             -------------------
    begin                : dom ago 3 2003
    copyright            : (C) 2003 by Gulmini Luciano
    email                : gulmini.luciano@student.unife.it
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef SPECIALSB_H
#define SPECIALSB_H

#include "minieditor.h"
#include <tqcombobox.h>
class mySpinBox;
class KLineEdit;

/**
  *@author gulmini luciano
  */

class specialSB : public miniEditor {
    Q_OBJECT
  TQ_OBJECT
  protected:
    TQComboBox *m_cb;
    mySpinBox *m_sb;
    KLineEdit *m_lineEdit;

   public:
     specialSB(TQWidget *parent=0, const char *name=0, bool useLineEdit = false);
     ~specialSB();
     void insertItem(const TQString& s){ m_cb->insertItem(s); }
     void setInitialValue(const TQString& s);
     TQStringList cbValueList();
     virtual void connectToPropertySetter(propertySetter* p);

   public slots:
     void cbValueSlot(const TQString&);
     void sbValueSlot(const TQString&);
     void lineEditValueSlot(const TQString&);

   signals:
     void valueChanged(const TQString&);

};

class angleEditor : public specialSB {
     Q_OBJECT
  TQ_OBJECT
   public:
           angleEditor(TQWidget *parent=0, const char *name=0);
};

class frequencyEditor : public specialSB {
     Q_OBJECT
  TQ_OBJECT
   public:
           frequencyEditor(TQWidget *parent=0, const char *name=0);
};

class timeEditor : public specialSB {
     Q_OBJECT
  TQ_OBJECT
   public:
           timeEditor(TQWidget *parent=0, const char *name=0);
};

class lengthEditor : public specialSB {
     Q_OBJECT
  TQ_OBJECT
   public:
           lengthEditor(TQWidget *parent=0, const char *name=0);
};

#endif