summaryrefslogtreecommitdiffstats
path: root/sigmodr/widgets/StoreUI.h
diff options
context:
space:
mode:
authorBen Boeckel <MathStuf@gmail.com>2009-03-01 15:41:19 -0500
committerBen Boeckel <MathStuf@gmail.com>2009-03-01 15:41:19 -0500
commit3301f60ce09331d688ba367011b1a552ef6e1393 (patch)
treecd6723b81de36b2d47f7641bf48fa3a8cdf78715 /sigmodr/widgets/StoreUI.h
parentd77dfa19e49b99a2d72923e5a035b0d7ad17b8b7 (diff)
downloadsigen-3301f60ce09331d688ba367011b1a552ef6e1393.tar.gz
sigen-3301f60ce09331d688ba367011b1a552ef6e1393.tar.xz
sigen-3301f60ce09331d688ba367011b1a552ef6e1393.zip
Made widget interfaces private
Diffstat (limited to 'sigmodr/widgets/StoreUI.h')
-rw-r--r--sigmodr/widgets/StoreUI.h15
1 files changed, 2 insertions, 13 deletions
diff --git a/sigmodr/widgets/StoreUI.h b/sigmodr/widgets/StoreUI.h
index f736278c..ced846ad 100644
--- a/sigmodr/widgets/StoreUI.h
+++ b/sigmodr/widgets/StoreUI.h
@@ -22,9 +22,6 @@
#include "ObjectUI.h"
// Forward declarations
-class KActionSelector;
-class KLineEdit;
-class QListWidgetItem;
namespace Sigmod
{
class Store;
@@ -43,17 +40,9 @@ class SIGMODRWIDGETS_EXPORT StoreUI : public ObjectUI
public slots:
void apply();
void discard();
- protected slots:
- void nameChanged(const QString& name);
- void itemAdded(QListWidgetItem* item);
- void itemRemoved(QListWidgetItem* item);
private:
- KLineEdit* ui_name;
- KActionSelector* ui_items;
- private slots:
- void initGui();
- void refreshGui();
- void setGui();
+ class Private;
+ Private* const d;
};
}
}