Changeset fef44fa9395f5d7c7fa1a80c6725f877affa3fad
- Timestamp:
- 06/04/06 00:27:19
(2 years ago)
- Author:
- Clément Stenac <zorglub@videolan.org>
- git-committer:
- Clément Stenac <zorglub@videolan.org> 1149373639 +0000
- git-parent:
[ccacddbd547138e44ffcdd832f9d92961b965282]
- git-author:
- Clément Stenac <zorglub@videolan.org> 1149373639 +0000
- Message:
Cosmetics
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r04e52ef |
rfef44fa |
|
| 60 | 60 | setColumnCount( 1 ); |
|---|
| 61 | 61 | setIconSize( QSize( ITEM_HEIGHT,ITEM_HEIGHT ) ); |
|---|
| | 62 | setAlternatingRowColors( true ); |
|---|
| | 63 | |
|---|
| | 64 | QFont f = font(); |
|---|
| | 65 | f.setPointSize( f.pointSize() + 1 ); |
|---|
| | 66 | setFont( f ); |
|---|
| 62 | 67 | |
|---|
| 63 | 68 | #define BI( a,b) QIcon a##_icon = QIcon( QPixmap( b##_xpm )) |
|---|
| … | … | |
| 347 | 352 | return; |
|---|
| 348 | 353 | } |
|---|
| | 354 | vlc_list_release( p_list ); |
|---|
| 349 | 355 | } |
|---|
| 350 | 356 | |
|---|
| rccacddb |
rfef44fa |
|
| 43 | 43 | resize( 800, 450 ); |
|---|
| 44 | 44 | |
|---|
| | 45 | QPalette plt( palette() ); |
|---|
| | 46 | plt.setColor( QPalette::Active, QPalette::Highlight, Qt::gray ); |
|---|
| | 47 | setPalette( plt ); |
|---|
| | 48 | |
|---|
| 45 | 49 | advanced_tree = NULL; |
|---|
| 46 | 50 | simple_tree = NULL; |
|---|
| … | … | |
| 54 | 58 | QHBoxLayout *tl = new QHBoxLayout(); |
|---|
| 55 | 59 | tl->setSpacing( 3 ); |
|---|
| 56 | | small = new QRadioButton( "Common", types ); |
|---|
| | 60 | small = new QRadioButton( "Basic", types ); |
|---|
| 57 | 61 | all = new QRadioButton( "All", types ); |
|---|
| 58 | 62 | tl->addWidget( small ); |
|---|