Changeset 165 for smplayer/trunk/src/skingui/qpropertysetter.h
- Timestamp:
- May 16, 2014, 9:51:55 AM (11 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 163
- Property svn:mergeinfo changed
-
smplayer/trunk/src/skingui/qpropertysetter.h
r142 r165 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 3Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 umplayer, Copyright (C) 2010 Ori Rejwan 4 4 … … 47 47 Q_PROPERTY(QPixmap repeat READ repeatIcon WRITE setRepeatIcon ) 48 48 49 Q_PROPERTY(QPixmap logoBg READ logoBgIcon WRITE setLogoBgIcon )50 Q_PROPERTY(QPixmap logoSplash READ logoSplashIcon WRITE setLogoSplashIcon )51 Q_PROPERTY(QPixmap logo READ logoIcon WRITE setLogoIcon )52 53 49 public: 54 50 … … 90 86 QPixmap repeatIcon() { return mediaPanel->repeatButton->myIcon().pixmap(MyIcon::Normal, MyIcon::Off); } 91 87 92 QPixmap logoBgIcon() { return logoBgPix; }93 QPixmap logoSplashIcon() { return logoSplashPix; }94 QPixmap logoIcon() { return logoPix; }95 96 void setLogoBgIcon(QPixmap icon) { logoBgPix = icon; }97 void setLogoSplashIcon(QPixmap icon) { logoSplashPix = icon; }98 void setLogoIcon(QPixmap icon) { logoPix = icon; }99 100 88 void setToolbarActions(QList<QAction *>actions) { toolbar_actions = actions; } 101 89 QList<QAction *> toolbarActions() { return toolbar_actions; } … … 110 98 void mediaPanelButtonIcon( int n, QPixmap pix); 111 99 112 QPixmap logoPix;113 QPixmap logoSplashPix;114 QPixmap logoBgPix;115 100 QList<QAction *> toolbar_actions; 116 101 };
Note:
See TracChangeset
for help on using the changeset viewer.