Ignore:
Timestamp:
May 3, 2016, 2:14:41 PM (9 years ago)
Author:
Silvan Scherrer
Message:

smplayer: update vendor to version 16.4

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/infofile.h

    r163 r175  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2014 Ricardo Villalba <rvm@users.sourceforge.net>
     2    Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    1717*/
    1818
    19 #ifndef _INFOFILE_H_
    20 #define _INFOFILE_H_
     19#ifndef INFOFILE_H
     20#define INFOFILE_H
     21
     22#define INFO_SIMPLE_LAYOUT
    2123
    2224#include "mediadata.h"
    2325#include <QString>
    2426
    25 class InfoFile
     27class InfoFile : public QObject
    2628{
     29        Q_OBJECT
    2730
    2831public:
    29         InfoFile();
     32        InfoFile(QObject * parent = 0);
    3033        ~InfoFile();
    3134
     
    3336
    3437protected:
    35         QString title(QString text);
     38        QString title(QString text, QString icon);
    3639        QString openPar(QString text);
    3740        QString closePar();
     
    3942        QString closeItem();
    4043
     44        QString addTrackColumns(QStringList l);
     45
    4146        QString addItem( QString tag, QString value );
     47        QString addTrack(int n, QString lang, QString name, int ID, QString type = "");
    4248
     49        QString defaultStyle();
     50        QString style();
     51
     52#ifndef INFO_SIMPLE_LAYOUT
    4353        int row;
    44 
    45 private:
    46         inline QString tr( const char * sourceText, const char * comment = 0, int n = -1 );
     54#endif
    4755};
    4856
Note: See TracChangeset for help on using the changeset viewer.