Changeset 175 for smplayer/vendor/current/src/infofile.h
- Timestamp:
- May 3, 2016, 2:14:41 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/vendor/current/src/infofile.h
r163 r175 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 4Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 17 17 */ 18 18 19 #ifndef _INFOFILE_H_ 20 #define _INFOFILE_H_ 19 #ifndef INFOFILE_H 20 #define INFOFILE_H 21 22 #define INFO_SIMPLE_LAYOUT 21 23 22 24 #include "mediadata.h" 23 25 #include <QString> 24 26 25 class InfoFile 27 class InfoFile : public QObject 26 28 { 29 Q_OBJECT 27 30 28 31 public: 29 InfoFile( );32 InfoFile(QObject * parent = 0); 30 33 ~InfoFile(); 31 34 … … 33 36 34 37 protected: 35 QString title(QString text );38 QString title(QString text, QString icon); 36 39 QString openPar(QString text); 37 40 QString closePar(); … … 39 42 QString closeItem(); 40 43 44 QString addTrackColumns(QStringList l); 45 41 46 QString addItem( QString tag, QString value ); 47 QString addTrack(int n, QString lang, QString name, int ID, QString type = ""); 42 48 49 QString defaultStyle(); 50 QString style(); 51 52 #ifndef INFO_SIMPLE_LAYOUT 43 53 int row; 44 45 private: 46 inline QString tr( const char * sourceText, const char * comment = 0, int n = -1 ); 54 #endif 47 55 }; 48 56
Note:
See TracChangeset
for help on using the changeset viewer.