summaryrefslogtreecommitdiffstats
path: root/sigmodr/widgets/TypeUI.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/TypeUI.h
parentd77dfa19e49b99a2d72923e5a035b0d7ad17b8b7 (diff)
downloadsigen-3301f60ce09331d688ba367011b1a552ef6e1393.tar.gz
sigen-3301f60ce09331d688ba367011b1a552ef6e1393.tar.xz
sigen-3301f60ce09331d688ba367011b1a552ef6e1393.zip
Made widget interfaces private
Diffstat (limited to 'sigmodr/widgets/TypeUI.h')
-rw-r--r--sigmodr/widgets/TypeUI.h20
1 files changed, 2 insertions, 18 deletions
diff --git a/sigmodr/widgets/TypeUI.h b/sigmodr/widgets/TypeUI.h
index 313a5ff1..d91a65e0 100644
--- a/sigmodr/widgets/TypeUI.h
+++ b/sigmodr/widgets/TypeUI.h
@@ -22,11 +22,6 @@
#include "ObjectUI.h"
// Forward declarations
-class KLineEdit;
-namespace Sigcore
-{
-class Fraction;
-}
namespace Sigmod
{
class Type;
@@ -34,11 +29,6 @@ class Type;
namespace Sigmodr
{
-namespace CoreWidgets
-{
-class FractionWidget;
-}
-
namespace Widgets
{
class SIGMODRWIDGETS_EXPORT TypeUI : public ObjectUI
@@ -50,15 +40,9 @@ class SIGMODRWIDGETS_EXPORT TypeUI : public ObjectUI
public slots:
void apply();
void discard();
- protected slots:
- void nameChanged(const QString& name);
- void stabChanged(const Sigcore::Fraction& stab);
private:
- KLineEdit* ui_name;
- CoreWidgets::FractionWidget* ui_stab;
- private slots:
- void initGui();
- void setGui();
+ class Private;
+ Private* const d;
};
}
}