author | sandman <sandman> | 2002-09-25 00:37:33 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-09-25 00:37:33 (UTC) |
commit | b4c23347000668cc111418cce4ec2822977e5c9d (patch) (unidiff) | |
tree | 7fbbe6a3e3150c6398b25cf6d1fa97e5cb6dae63 | |
parent | 65c19fe339246fd60c09a577d1feb88818fcf735 (diff) | |
download | opie-b4c23347000668cc111418cce4ec2822977e5c9d.zip opie-b4c23347000668cc111418cce4ec2822977e5c9d.tar.gz opie-b4c23347000668cc111418cce4ec2822977e5c9d.tar.bz2 |
forgot to remove obsoleted file (now in OFontSelector/libopie)
-rw-r--r-- | noncore/settings/appearance2/fontlistitem.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/noncore/settings/appearance2/fontlistitem.h b/noncore/settings/appearance2/fontlistitem.h deleted file mode 100644 index 73f1d54..0000000 --- a/noncore/settings/appearance2/fontlistitem.h +++ b/dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | #ifndef FONTLISTITEM_H | ||
2 | #define FONTLISTITEM_H | ||
3 | |||
4 | #include <qlistbox.h> | ||
5 | |||
6 | class FontListItem : public QListBoxText { | ||
7 | public: | ||
8 | FontListItem ( const QString &t, const QStringList &styles, const QValueList<int> &sizes ) : QListBoxText ( ) | ||
9 | { | ||
10 | m_name = t; | ||
11 | m_styles = styles; | ||
12 | m_sizes = sizes; | ||
13 | |||
14 | QString str = t; | ||
15 | str [0] = str [0]. upper ( ); | ||
16 | setText ( str ); | ||
17 | } | ||
18 | |||
19 | QString family ( ) const | ||
20 | { | ||
21 | return m_name; | ||
22 | } | ||
23 | |||
24 | const QStringList &styles ( ) const | ||
25 | { | ||
26 | return m_styles; | ||
27 | } | ||
28 | |||
29 | const QValueList<int> &sizes ( ) const | ||
30 | { | ||
31 | return m_sizes; | ||
32 | } | ||
33 | |||
34 | private: | ||
35 | QStringList m_styles; | ||
36 | QValueList<int> m_sizes; | ||
37 | QString m_name; | ||
38 | }; | ||
39 | |||
40 | #endif \ No newline at end of file | ||