summaryrefslogtreecommitdiff
path: root/libopie
authorsandman <sandman>2002-09-27 00:54:58 (UTC)
committer sandman <sandman>2002-09-27 00:54:58 (UTC)
commitdcd5eb6949787321c278b10772bd75a27ec6d508 (patch) (unidiff)
tree12525523ac676e6b43419f742afb6b1d007d61da /libopie
parentaec4806d28c0422e9d0572e9601d6dc41a9cdd61 (diff)
downloadopie-dcd5eb6949787321c278b10772bd75a27ec6d508.zip
opie-dcd5eb6949787321c278b10772bd75a27ec6d508.tar.gz
opie-dcd5eb6949787321c278b10772bd75a27ec6d508.tar.bz2
- size tweak for OColorButton
- new convenience methods in OFontSelector
Diffstat (limited to 'libopie') (more/less context) (show whitespace changes)
-rw-r--r--libopie/ocolorbutton.cpp5
-rw-r--r--libopie/ofontselector.cpp5
-rw-r--r--libopie/ofontselector.h1
3 files changed, 10 insertions, 1 deletions
diff --git a/libopie/ocolorbutton.cpp b/libopie/ocolorbutton.cpp
index 96e5612..4734c0c 100644
--- a/libopie/ocolorbutton.cpp
+++ b/libopie/ocolorbutton.cpp
@@ -51,7 +51,10 @@ OColorButton::OColorButton ( QWidget *parent, const char *name )
51 connect ( d-> m_menu, SIGNAL( colorSelected ( const QColor & )), this, SLOT( updateColor ( const QColor & ))); 51 connect ( d-> m_menu, SIGNAL( colorSelected ( const QColor & )), this, SLOT( updateColor ( const QColor & )));
52 52
53 updateColor ( black ); 53 updateColor ( black );
54 setMinimumSize ( sizeHint ( ) + QSize ( 8, 0 )); 54
55 QSize s = sizeHint ( ) + QSize ( 12, 0 );
56 setMinimumSize ( s );
57 setMaximumSize ( s. width ( ) * 2, s. height ( ));
55} 58}
56 59
57OColorButton::~OColorButton ( ) 60OColorButton::~OColorButton ( )
diff --git a/libopie/ofontselector.cpp b/libopie/ofontselector.cpp
index d32aeb4..39440af 100644
--- a/libopie/ofontselector.cpp
+++ b/libopie/ofontselector.cpp
@@ -112,6 +112,11 @@ OFontSelector::~OFontSelector ( )
112{ 112{
113} 113}
114 114
115bool OFontSelector::setSelectedFont ( const QFont &f )
116{
117 return setSelectedFont ( f. family ( ), m_fdb. styleString ( f ), f. pointSize ( ), QFont::encodingName ( f. charSet ( )));
118}
119
115bool OFontSelector::setSelectedFont ( const QString &familyStr, const QString &styleStr, int sizeVal, const QString & /*charset*/ ) 120bool OFontSelector::setSelectedFont ( const QString &familyStr, const QString &styleStr, int sizeVal, const QString & /*charset*/ )
116{ 121{
117 QString sizeStr = QString::number ( sizeVal ); 122 QString sizeStr = QString::number ( sizeVal );
diff --git a/libopie/ofontselector.h b/libopie/ofontselector.h
index 2011e43..b3aa862 100644
--- a/libopie/ofontselector.h
+++ b/libopie/ofontselector.h
@@ -49,6 +49,7 @@ public:
49 49
50 QFont selectedFont ( ); 50 QFont selectedFont ( );
51 51
52 bool setSelectedFont ( const QFont & );
52 bool setSelectedFont ( const QString &family, const QString &style, int size, const QString &charset = 0 ); 53 bool setSelectedFont ( const QString &family, const QString &style, int size, const QString &charset = 0 );
53 54
54 QString fontFamily ( ) const; 55 QString fontFamily ( ) const;