summaryrefslogtreecommitdiffstats
path: root/lib/kotext/KoCustomVariablesDia.h
blob: b5883ddb1a570950927eb1cc788f7630d7dc3818 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/* This file is part of the KDE project
   Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org>

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public License
   along with this library; see the file COPYING.LIB.  If not, write to
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
*/

#ifndef KOVARIABLEDLGS_H
#define KOVARIABLEDLGS_H

#include "KoVariable.h"

#include <kdialogbase.h>
#include <tqptrlist.h>
#include <tqstring.h>
#include <klistview.h>
#include <koffice_export.h>
class TQComboBox;
class TQVBox;
class TQResizeEvent;
class KLineEdit;
class TQCloseEvent;

/******************************************************************
 *
 * Class: KoVariableNameDia
 *
 ******************************************************************/

class KoVariableNameDia : public KDialogBase
{
    Q_OBJECT
  TQ_OBJECT

public:
    // For KWMailMergeVariableInsertDia
    KoVariableNameDia( TQWidget *tqparent );
    // For kwview
    KoVariableNameDia( TQWidget *tqparent, const TQPtrList<KoVariable> &vars );
    TQString getName() const;

protected slots:
    void textChanged ( const TQString &_text );
protected:
    void init();

    TQComboBox *names;
    TQVBox *back;
};

/**
 * Class: KoCustomVariablesListItem
 * Used by KoCustomVariablesDia
 * Represents an item in the listview, holding a lineedit to edit the value of the variable.
 */
class KoCustomVariablesListItem : public TQListViewItem
{
public:
    KoCustomVariablesListItem( TQListView *tqparent );

    void setVariable( KoCustomVariable *v );
    KoCustomVariable *getVariable() const;

    virtual void setup();
    virtual int width ( const TQFontMetrics & fm, const TQListView * lv, int c ) const;
    void update();

    // Gets the value from the lineedit and sets it into the variable
    void applyValue();

protected:
    KoCustomVariable *var;
    KLineEdit *editWidget;
};

/**
 * Class: KoCustomVariablesList
 * The listview.
 * Used by KoCustomVariablesDia
 */
class KoCustomVariablesList : public KListView
{
    Q_OBJECT
  TQ_OBJECT

public:
    KoCustomVariablesList( TQWidget *tqparent );

    void setValues();
    void updateItems();

protected slots:
    void columnSizeChange( int c, int os, int ns );
    void sectionClicked( int c );

private:
    class Private;
    Private* d; // currently unused
};

/**
 * Class: KoCustomVariablesDia
 * This dialog allows to set the value of the custom variables.
 */
class KOTEXT_EXPORT KoCustomVariablesDia : public KDialogBase
{
    Q_OBJECT
  TQ_OBJECT

public:
    KoCustomVariablesDia( TQWidget *tqparent, const TQPtrList<KoVariable> &variables );
protected slots:
    void slotOk();

protected:
    TQVBox *back;
    KoCustomVariablesList *list;

};

/**
 * Class: KoCustomVarDialog
 * This dialog allows to add a new custom variable or
 * to edit an existing one.
 */
class KOTEXT_EXPORT KoCustomVarDialog : public KDialogBase
{
    Q_OBJECT
  TQ_OBJECT

public:
    /**
     * Add new variable
     */
    KoCustomVarDialog( TQWidget *tqparent );
    /**
     * Edit existing variable @p var
     */
    KoCustomVarDialog( TQWidget *tqparent, KoCustomVariable *var );

    virtual TQString name();
    virtual TQString value();

protected slots:
    void slotAddOk();
    void slotEditOk();
    void slotTextChanged(const TQString&);

protected:
    TQVBox *back;
    KLineEdit *m_name;
    KLineEdit *m_value;

private:
    void init();
    KoCustomVariable *m_var;
};

#endif