blob: dafcc4644a8d69bf04083a0b5849df2191b1ce34 (
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
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#ifndef STRINGMAPDIALOG_H
#define STRINGMAPDIALOG_H
class KLineEdit;
class KListView;
class TQListViewItem;
#include <kdialogbase.h>
template <typename T1, typename T2>
class TQMap;
namespace Tellico {
/**
* @short A simple dialog for editing a map between two strings.
*
* A \ref KListView is used with the map keys in the first column and
* the map values in the second. Two edit boxes are below the list view.
* When an item is selected, the key-value is pair is placed in the edit
* boxes. Add and Delete buttons are used to add a new pair, or to remove
* an existing one.
*
* @author Robby Stephenson
*/
class StringMapDialog : public KDialogBase {
Q_OBJECT
TQ_OBJECT
public:
StringMapDialog(const TQMap<TQString, TQString>& stringMap, TQWidget* parent, const char* name=0, bool modal=false);
/**
* Sets the titles for the key and value columns.
*
* @param label1 The name of the key string
* @param label2 The name of the value string
*/
void setLabels(const TQString& label1, const TQString& label2);
/**
* Returns the modified string map.
*
* @return The modified string map
*/
TQMap<TQString, TQString> stringMap();
private slots:
void slotAdd();
void slotDelete();
void slotUpdate(TQListViewItem* item);
protected:
KListView* m_listView;
KLineEdit* m_edit1;
KLineEdit* m_edit2;
};
} // end namespace
#endif
|