Ticket #6310: mythplugins-svn-qt4.diff
File mythplugins-svn-qt4.diff, 77.5 KB (added by , 12 years ago) |
---|
-
mythmusic/i18n/i18n.pro
14 14 INSTALLS += trans 15 15 16 16 SOURCES += dummy.c 17 QT += xml sql opengl qt3support -
mythmusic/mythmusic/playbackbox.cpp
6 6 using namespace std; 7 7 8 8 // Qt includes 9 #include < qapplication.h>10 #include < qregexp.h>11 //Added by qt3to4: 9 #include <QEvent> 10 #include <QApplication> 11 #include <QRegExp> 12 12 #include <QLabel> 13 13 #include <QPixmap> 14 14 #include <Q3ValueList> -
mythmusic/mythmusic/mythmusic.pro
70 70 } 71 71 72 72 73 #The following line was inserted by qt3to474 73 QT += xml sql opengl qt3support 75 74 76 75 include ( ../../libs-targetfix.pro ) -
mythmusic/mythmusic/synaesthesia.cpp
9 9 #include "mainvisual.h" 10 10 #include "synaesthesia.h" 11 11 12 #include < qpainter.h>13 #include < qpixmap.h>14 #include < qimage.h>12 #include <QPainter> 13 #include <QPixmap> 14 #include <QImage> 15 15 16 16 #include <math.h> 17 17 #include <stdlib.h> -
mythmusic/mythmusic/cddecoder-windows.cpp
2 2 #include <stdlib.h> 3 3 #include <iostream> 4 4 #include <string> 5 #include <qobject.h> 6 #include <qiodevice.h> 7 #include <qdir.h> 8 #include <qfile.h> 5 6 #include <QObject> 7 #include <QIoDevice> 8 #include <QDir> 9 #include <QFile> 10 9 11 using namespace std; 10 12 11 13 #include <mythtv/mythconfig.h> -
mythmusic/mythmusic/search.cpp
1 1 // Qt includes 2 #include < qlayout.h>3 #include < qfontmetrics.h>4 #include < qpainter.h>2 #include <QLayout> 3 #include <QFontMetrics> 4 #include <QPainter> 5 5 6 6 // MythTV plugin includes 7 7 #include <mythtv/mythcontext.h> -
mythmusic/mythmusic/cdrip.h
5 5 6 6 #include <mythtv/mythwidgets.h> 7 7 #include <mythtv/mythdialogs.h> 8 //Added by qt3to4:9 8 #include <QEvent> 10 9 #include <QKeyEvent> 11 10 -
mythmusic/mythmusic/playlist.h
1 1 #ifndef PLAYLIST_H_ 2 2 #define PLAYLIST_H_ 3 3 4 #include < q3valuelist.h>5 #include < q3listview.h>6 #include < q3ptrlist.h>7 #include < qthread.h>4 #include <Q3ValueList> 5 #include <Q3ListView> 6 #include <Q3PtrList> 7 #include <QThread> 8 8 9 9 #include "metadata.h" 10 10 #include "treecheckitem.h" -
mythmusic/mythmusic/miniplayer.cpp
1 1 #include <iostream> 2 //Added by qt3to4: 2 3 using namespace std; 4 5 // qt 3 6 #include <QKeyEvent> 4 7 #include <Q3PtrList> 5 8 #include <Q3Frame> 6 using namespace std; 9 #include <QEvent> 10 #include <QPixmap> 11 #include <QImage> 12 #include <QApplication> 7 13 8 // qt9 #include <qpixmap.h>10 #include <qimage.h>11 #include <qapplication.h>12 13 14 // mythtv 14 15 #include <mythtv/mythcontext.h> 15 16 #include <mythtv/mythdialogs.h> -
mythmusic/mythmusic/aacdecoder.cpp
25 25 #include <string> 26 26 27 27 // Qt headers 28 #include < qobject.h>29 #include < qiodevice.h>30 #include < qfile.h>28 #include <QObject> 29 #include <QIODevice> 30 #include <QFile> 31 31 32 32 // MythTV headers 33 33 #include <mythtv/audiooutput.h> … … 302 302 // 303 303 304 304 unsigned char *buffer = NULL; 305 uint buffer_size; 305 unsigned int buf_size_tmp; 306 unsigned long buffer_size; 306 307 307 308 mp4ff_get_decoder_config( 308 309 mp4_input_file, 309 310 aac_track_number, 310 311 &buffer, 311 &buf fer_size312 &buf_size_tmp 312 313 ); 314 buffer_size = buf_size_tmp; 313 315 // some linux distros (gentoo, debian) modify the faad2 api with stdint.h types 314 316 // instead of unsigned long int 315 317 #ifdef FAAD_MODIFIED 316 u int32_tsrate_tmp;318 unsigned long srate_tmp; 317 319 int err = faacDecInit2(decoder_handle, buffer, buffer_size, &srate_tmp, &channels); 318 320 sample_rate = srate_tmp; 319 321 if (err < 0) -
mythmusic/mythmusic/decoder.h
2 2 #define DECODER_H_ 3 3 4 4 #include "config.h" 5 #include <qstring.h>6 #include <qevent.h>7 #include <qthread.h>8 #include <q3ptrlist.h>9 #include <qwaitcondition.h>10 #include <qmutex.h>11 5 6 #include <QString> 7 #include <QEvent> 8 #include <QThread> 9 #include <Q3PtrList> 10 #include <QWaitCondition> 11 #include <QMutex> 12 12 13 #include <mythtv/mythobservable.h> 13 14 14 15 class Metadata; … … 16 17 class Decoder; 17 18 class DecoderFactory; 18 19 19 class QObject;20 class QIODevice;21 class QThread;22 20 class OutputEvent; 23 21 24 22 class Buffer; -
mythmusic/mythmusic/streaminput.cpp
8 8 9 9 #include "mythtv/mythcontext.h" 10 10 11 #include < qapplication.h>12 #include < q3socket.h>11 #include <QApplication> 12 #include <Q3Socket> 13 13 14 14 15 StreamInput::StreamInput(const Q 3Url &source)15 StreamInput::StreamInput(const QUrl &source) 16 16 : request(0), url(source), sock(0), stage(0) 17 17 { 18 18 } -
mythmusic/mythmusic/visualize.cpp
14 14 #include <iostream> 15 15 16 16 // qt 17 #include < qpainter.h>18 #include < qpixmap.h>19 #include < qimage.h>20 #include < qdir.h>21 #include < q3url.h>17 #include <QPainter> 18 #include <QPixmap> 19 #include <QImage> 20 #include <QDir> 21 #include <QUrl> 22 22 23 23 // mythtv 24 24 #include <mythtv/mythdbcon.h> -
mythmusic/mythmusic/treecheckitem.cpp
1 #include <qapplication.h> 2 #include <qstring.h> 3 #include <qpixmap.h> 4 #include <qimage.h> 5 #include <qpainter.h> 1 #include <QApplication> 2 #include <QString> 3 #include <QPixmap> 4 #include <QImage> 5 #include <QPainter> 6 6 7 #include <iostream> 8 7 9 using namespace std; 8 10 9 11 #include "treecheckitem.h" -
mythmusic/mythmusic/metaioflacvorbiscomment.cpp
1 1 #include <iostream> 2 2 3 #include <sys/stat.h> 3 //Added by qt3to4: 4 4 5 #include <Q3CString> 6 5 7 using namespace std; 6 8 7 9 #include "metaioflacvorbiscomment.h" -
mythmusic/mythmusic/mainvisual.h
11 11 #include "polygon.h" 12 12 #include "constants.h" 13 13 14 #include < qwidget.h>15 #include < qdialog.h>16 #include < q3memarray.h>17 #include < qpixmap.h>18 #include < qimage.h>19 #include < q3ptrlist.h>20 #include < qstringlist.h>21 #include < qtimer.h>14 #include <QWidget> 15 #include <QDialog> 16 #include <Q3MemArray> 17 #include <QPixmap> 18 #include <QImage> 19 #include <Q3PtrList> 20 #include <QStringList> 21 #include <QTimer> 22 22 #include <QPaintEvent> 23 23 #include <QResizeEvent> 24 24 #include <QHideEvent> 25 #include <QEvent> 25 26 26 27 class Buffer; 27 28 class Output; 28 29 class VisualNode; 29 30 class LogScale; 30 class QTimer;31 31 class InfoWidget; 32 32 class Metadata; 33 33 class MainVisual; -
mythmusic/mythmusic/recycler.h
7 7 #ifndef __recycler_h 8 8 #define __recycler_h 9 9 10 #include < qmutex.h>11 #include < qwaitcondition.h>10 #include <QMutex> 11 #include <QWaitCondition> 12 12 13 13 class Buffer; 14 14 -
mythmusic/mythmusic/metadata.cpp
1 1 #include <iostream> 2 2 3 3 // qt 4 #include <qapplication.h> 5 #include <qregexp.h> 6 #include <qdatetime.h> 7 #include <qdir.h> 8 //Added by qt3to4: 4 #include <QApplication> 5 #include <QRegExp> 6 #include <QDateTime> 7 #include <QDir> 9 8 #include <Q3ValueList> 9 #include <Q3PtrCollection> 10 10 11 11 using namespace std; 12 12 -
mythmusic/mythmusic/globalsettings.cpp
14 14 #include <QObject> 15 15 #include <Q3HBoxLayout> 16 16 #include <Q3VBoxLayout> 17 #include < q3header.h>17 #include <Q3Header> 18 18 #include <QLabel> 19 19 #include <QKeyEvent> 20 20 #include <QEvent> 21 21 #include <QProcess> 22 22 #include <QStringList> 23 #include <QTextStream> 23 24 24 25 // mythtv 25 26 #include <mythtv/mythcontext.h> -
mythmusic/mythmusic/metaio.h
1 1 #ifndef METAIO_H_ 2 2 #define METAIO_H_ 3 3 4 #include < qregexp.h>4 #include <QRegExp> 5 5 6 6 #define MYTH_MUSICBRAINZ_ALBUMARTIST_UUID "89ad4ac3-39f7-470e-963a-56509c546377" 7 7 -
mythmusic/mythmusic/dbcheck.cpp
1 #include <qstring.h> 2 #include <qdir.h> 3 //Added by qt3to4: 1 #include <QString> 2 #include <QDir> 4 3 #include <QSqlError> 5 4 6 5 #include <iostream> -
mythmusic/mythmusic/directoryfinder.cpp
1 1 #include <cstdlib> 2 2 // Qt 3 #include <qdir.h> 4 #include <qapplication.h> 5 #include <qfileinfo.h> 6 //Added by qt3to4: 3 #include <QDir> 4 #include <QApplication> 5 #include <QFileInfo> 7 6 #include <QKeyEvent> 8 7 9 8 // Myth -
mythmusic/mythmusic/treebuilders.h
1 1 #ifndef TREEBUILDERS_H_ 2 2 #define TREEBUILDERS_H_ 3 3 4 #include < qstring.h>5 #include < qstringlist.h>6 #include < q3ptrdict.h>7 #include < q3dict.h>4 #include <QString> 5 #include <QStringList> 6 #include <Q3PtrDict> 7 #include <Q3Dict> 8 8 9 9 #include "metadata.h" 10 10 -
mythmusic/mythmusic/cdrip.cpp
10 10 11 11 // Linux C includes 12 12 #include "config.h" 13 13 14 #ifdef HAVE_CDAUDIO 14 15 #include <cdaudio.h> 15 //Added by qt3to4: 16 16 17 #include <QKeyEvent> 17 18 #include <Q3PtrList> 18 19 #include <QEvent> 20 19 21 extern "C" { 20 22 #include <cdda_interface.h> 21 23 #include <cdda_paranoia.h> … … 25 27 // C++ includes 26 28 #include <iostream> 27 29 #include <memory> 30 28 31 using namespace std; 29 32 30 33 // Qt includes 31 #include < qapplication.h>32 #include < qdir.h>33 #include < qregexp.h>34 #include <QApplication> 35 #include <QDir> 36 #include <QRegExp> 34 37 35 38 // MythTV plugin includes 36 39 #include <mythtv/mythcontext.h> -
mythmusic/mythmusic/playlist.cpp
7 7 using namespace std; 8 8 #include "playlist.h" 9 9 #include "qdatetime.h" 10 //Added by qt3to4:11 10 #include <Q3PtrList> 12 #include <Q 3TextStream>11 #include <QTextStream> 13 12 14 13 #include <mythtv/mythcontext.h> 15 14 #include "smartplaylist.h" 16 15 #include <mythtv/mythdb.h> 17 16 #include <mythtv/compat.h> 18 17 19 #include < qfileinfo.h>20 #include < q3process.h>21 #include < qapplication.h>18 #include <QFileInfo> 19 #include <Q3Process> 20 #include <QApplication> 22 21 23 22 const char *kID0err = "Song with ID of 0 in playlist, this shouldn't happen."; 24 23 … … 1800 1799 return 1; 1801 1800 } 1802 1801 1803 Q 3TextStream recstream(&reclistfile);1802 QTextStream recstream(&reclistfile); 1804 1803 1805 1804 QStringList::Iterator iter; 1806 1805 -
mythmusic/mythmusic/vorbisencoder.cpp
1 #include < qstring.h>2 #include < q3cstring.h>3 #include < qapplication.h>4 #include < q3progressbar.h>1 #include <QString> 2 #include <Q3CString> 3 #include <QApplication> 4 #include <QProgressBar> 5 5 6 6 #include "metadata.h" 7 7 #include "encoder.h" -
mythmusic/mythmusic/synaesthesia.h
10 10 #include <SDL.h> 11 11 #endif 12 12 13 class QImage;14 15 13 #define LogSize 10 16 14 #define Brightness 150 17 15 #define NumSamples (1<<LogSize) -
mythmusic/mythmusic/decoder.cpp
11 11 #include <mythtv/output.h> 12 12 #include <mythtv/visual.h> 13 13 14 #include < qapplication.h>15 #include < qobject.h>16 #include < q3ptrlist.h>17 #include < qdir.h>18 #include < qstringlist.h>19 #include < qregexp.h>14 #include <QApplication> 15 #include <QObject> 16 #include <Q3PtrList> 17 #include <QDir> 18 #include <QStringList> 19 #include <QRegExp> 20 20 21 21 #include <mythtv/mythcontext.h> 22 22 -
mythmusic/mythmusic/smartplaylist.cpp
1 #include <qlayout.h> 2 #include <qpushbutton.h> 3 #include <qlabel.h> 4 #include <qsqlrecord.h> 5 #include <qsqlfield.h> 6 #include <qsqldriver.h> 7 #include <q3sqlcursor.h> 8 #include <q3hbox.h> 9 //Added by qt3to4: 1 #include <QLayout> 2 #include <QPushButton> 3 #include <QLabel> 4 #include <QSqlRecord> 5 #include <QSqlField> 6 #include <QSqlDriver> 7 #include <Q3SqlCursor> 8 #include <Q3HBox> 10 9 #include <Q3HBoxLayout> 11 10 #include <QKeyEvent> 12 11 #include <Q3Frame> -
mythmusic/mythmusic/flacencoder.h
1 1 #ifndef FLACENCODER_H_ 2 2 #define FLACENCODER_H_ 3 3 4 #include < qstring.h>4 #include <QString> 5 5 6 6 #define HAVE_INTTYPES_H 7 7 -
mythmusic/mythmusic/lameencoder.cpp
23 23 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 24 24 */ 25 25 26 #include < qstring.h>27 #include < q3cstring.h>28 #include < qapplication.h>29 #include < q3progressbar.h>26 #include <QString> 27 #include <Q3CString> 28 #include <QApplication> 29 #include <QProgressBar> 30 30 31 31 #include "metadata.h" 32 32 #include "lameencoder.h" -
mythmusic/mythmusic/treecheckitem.h
4 4 #include <mythtv/uilistbtntype.h> 5 5 #include <QPixmap> 6 6 7 class QPixmap;8 7 class PlaylistsContainer; 9 8 class Playlist; 10 9 class Track; -
mythmusic/mythmusic/databasebox.h
1 1 #ifndef DATABASEBOX_H_ 2 2 #define DATABASEBOX_H_ 3 3 4 #include <qwidget.h> 5 #include <qdialog.h> 6 #include <qstringlist.h> 7 #include <qthread.h> 8 #include <qtimer.h> 9 #include <q3ptrlist.h> 10 //Added by qt3to4: 4 #include <QWidget> 5 #include <QDialog> 6 #include <QStringList> 7 #include <QThread> 8 #include <QTimer> 9 #include <Q3PtrList> 11 10 #include <QPixmap> 12 11 #include <QKeyEvent> 13 12 14 13 #include "metadata.h" 15 14 #include "playlist.h" 15 16 16 #include <mythtv/mythwidgets.h> 17 17 #include <mythtv/lcddevice.h> 18 18 #include <mythtv/uilistbtntype.h> -
mythmusic/mythmusic/metadata.h
2 2 #define METADATA_H_ 3 3 4 4 // qt 5 #include <qstring.h> 6 #include <qstringlist.h> 7 #include <q3ptrlist.h> 8 #include <q3valuelist.h> 9 #include <qmap.h> 10 #include <qthread.h> 5 #include <QString> 6 #include <QStringList> 7 #include <Q3PtrList> 8 #include <Q3ValueList> 9 #include <QMap> 10 #include <QThread> 11 #include <Q3PtrCollection> 11 12 12 13 // mythtv 13 14 #include <mythtv/uitypes.h> -
mythmusic/mythmusic/editmetadata.cpp
1 1 #include <mythtv/mythcontext.h> 2 2 #include <mythtv/mythdbcon.h> 3 3 #include <mythtv/libmythui/mythuihelper.h> 4 #include <qdir.h> 5 //Added by qt3to4: 4 5 #include <QDir> 6 6 #include <QKeyEvent> 7 7 #include <QLabel> 8 8 #include <Q3PtrList> 9 9 #include <QPixmap> 10 10 11 #include "editmetadata.h" 11 12 #include "decoder.h" 12 13 #include "genres.h" -
mythmusic/mythmusic/bumpscope.cpp
10 10 11 11 #ifdef SDL_SUPPORT 12 12 13 #include < qpainter.h>13 #include <QPainter> 14 14 15 15 #include <math.h> 16 16 #include <stdlib.h> -
mythmusic/mythmusic/directoryfinder.h
4 4 #include <iostream> 5 5 6 6 // qt 7 #include <qstring.h> 8 #include <qstringlist.h> 9 //Added by qt3to4: 7 #include <QString> 8 #include <QStringList> 10 9 #include <QKeyEvent> 11 10 #include <QPixmap> 12 11 -
mythmusic/mythmusic/musicplayer.h
7 7 #include <mythtv/audiooutput.h> 8 8 9 9 #include "metadata.h" 10 #include <QEvent> 10 11 11 12 class Decoder; 12 13 class AudioOutput; -
mythmusic/mythmusic/flacencoder.cpp
1 #include < qstring.h>1 #include <QString> 2 2 3 3 #include <iostream> 4 4 #include <unistd.h> 5 5 #include <stdlib.h> 6 6 7 using namespace std; 7 8 8 9 #include "metadata.h" -
mythmusic/mythmusic/metaiotaglib.h
3 3 4 4 #include "metaio.h" 5 5 #include "metadata.h" 6 6 7 #include <id3v2tag.h> 7 8 #include <textidentificationframe.h> 8 9 #include <attachedpictureframe.h> 9 10 #include <mpegfile.h> 10 11 #include <mpegproperties.h> 11 //Added by qt3to4: 12 12 13 #include <Q3ValueList> 13 14 14 15 using TagLib::MPEG::File; -
mythmusic/mythmusic/vorbisencoder.h
1 1 #ifndef VORBISENCODER_H_ 2 2 #define VORBISENCODER_H_ 3 3 4 #include < qstring.h>4 #include <QString> 5 5 6 6 class Metadata; 7 7 class Encoder; -
mythmusic/mythmusic/databasebox.cpp
1 1 #include <cstdlib> 2 2 #include <iostream> 3 //Added by qt3to4: 4 #include <QKeyEvent> 5 #include <Q3PtrList> 3 6 4 using namespace std; 7 5 8 6 // qt 9 #include <qapplication.h> 10 #include <qstringlist.h> 11 #include <qpixmap.h> 12 #include <qregexp.h> 13 #include <q3frame.h> 14 #include <qlayout.h> 15 #include <qevent.h> 7 #include <QKeyEvent> 8 #include <Q3PtrList> 9 #include <QApplication> 10 #include <QStringList> 11 #include <QPixmap> 12 #include <QRegExp> 13 #include <Q3Frame> 14 #include <QLayout> 15 #include <QEvent> 16 16 17 17 // mythtv 18 18 #include <mythtv/dialogbox.h> -
mythmusic/mythmusic/smartplaylist.h
1 1 #ifndef SMARTPLAYLIST_H_ 2 2 #define SMARTPLAYLIST_H_ 3 3 4 #include < qdatetime.h>5 #include < qlayout.h>6 #include < q3hbox.h>7 #include < qvariant.h>4 #include <QDateTime> 5 #include <QLayout> 6 #include <Q3HBox> 7 #include <QVariant> 8 8 #include <Q3HBoxLayout> 9 9 #include <QLabel> 10 10 #include <Q3PtrList> … … 14 14 #include <mythtv/mythwidgets.h> 15 15 #include <mythtv/mythdialogs.h> 16 16 17 class Q3MythListView; 18 class Q3ListBoxItem; 19 class Q3MythListBox; 17 #include "mythlistbox-qt3.h" 18 #include "mythlistview-qt3.h" 19 20 20 struct SmartPLOperator; 21 21 struct SmartPLField; 22 22 -
mythmusic/mythmusic/importmusic.h
4 4 #include <iostream> 5 5 using namespace std; 6 6 7 //Added by qt3to4:8 7 #include <QKeyEvent> 9 8 #include <QThread> 10 9 -
mythmusic/mythmusic/mythlistview-qt3.h
1 1 #ifndef _MYTHLISTVIEW_H_ 2 2 #define _MYTHLISTVIEW_H_ 3 3 4 #include <q3listview.h> 4 #include <Q3ListView> 5 #include <QFocusEvent> 6 #include <QKeyEvent> 5 7 6 8 class Q3MythListView : public Q3ListView 7 9 { -
mythmusic/mythmusic/lameencoder.h
26 26 #ifndef LAMEENCODER_H_ 27 27 #define LAMEENCODER_H_ 28 28 29 #include < qstring.h>29 #include <QString> 30 30 31 31 class Metadata; 32 32 class Encoder; -
mythmusic/mythmusic/editmetadata.h
2 2 #define EDITMETADATA_H_ 3 3 4 4 #include <iostream> 5 //Added by qt3to4:6 5 #include <QPixmap> 7 6 #include <QKeyEvent> 8 7 using namespace std; -
mythmusic/mythmusic/musicplayer.cpp
3 3 4 4 // C++ includes 5 5 #include <iostream> 6 #include <Q3ValueList>7 6 8 7 using namespace std; 9 8 10 9 // qt 11 #include <qapplication.h> 12 #include <q3url.h> 13 #include <qwidget.h> 10 #include <Q3ValueList> 11 #include <QEvent> 12 #include <QApplication> 13 #include <QUrl> 14 #include <QWidget> 14 15 #include <QFile> 15 16 16 17 // mythtv -
mythmusic/mythmusic/mythlistbox-qt3.h
1 1 #ifndef _MYTHLISTBOX_H_ 2 2 #define _MYTHLISTBOX_H_ 3 3 4 #include <q3listbox.h> 4 #include <Q3ListBox> 5 #include <QFocusEvent> 6 #include <QKeyEvent> 5 7 6 8 class Q3MythListBox: public Q3ListBox 7 9 { -
mythmusic/mythmusic/metaiotaglib.cpp
4 4 #include "metadata.h" 5 5 6 6 #include <mythtv/mythcontext.h> 7 //Added by qt3to4: 7 8 8 #include <Q3ValueList> 9 9 10 10 MetaIOTagLib::MetaIOTagLib(void) -
mythmusic/mythmusic/playbackbox.h
2 2 #define PLAYBACKBOX_H_ 3 3 4 4 // qt 5 #include < qtimer.h>6 #include < qmutex.h>7 #include < q3valuevector.h>5 #include <QTimer> 6 #include <QMutex> 7 #include <Q3ValueVector> 8 8 #include <QKeyEvent> 9 #include <QEvent> 9 10 10 11 // mythtv 11 12 #include <mythtv/mythwidgets.h> -
mythmusic/mythmusic/mainvisual.cpp
11 11 #include <iostream> 12 12 13 13 // qt 14 #include < qtimer.h>15 #include < qpainter.h>16 #include < qevent.h>17 #include < qapplication.h>18 #include < qspinbox.h>19 #include < qpixmap.h>20 #include < qcursor.h>21 #include < qstring.h>22 #include < qregexp.h>14 #include <QTimer> 15 #include <QPainter> 16 #include <QEvent> 17 #include <QApplication> 18 #include <QSpinBox> 19 #include <QPixmap> 20 #include <QCursor> 21 #include <QString> 22 #include <QRegExp> 23 23 #include <QHideEvent> 24 24 #include <QResizeEvent> 25 25 #include <QPaintEvent> -
mythmusic/mythmusic/search.h
1 1 #ifndef SEARCH_H_ 2 2 #define SEARCH_H_ 3 3 4 #include <qregexp.h> 5 //Added by qt3to4: 4 #include <QRegExp> 6 5 #include <QLabel> 6 7 7 #include <mythtv/mythdialogs.h> 8 8 #include <mythtv/mythwidgets.h> 9 9 -
mythmusic/mythmusic/importmusic.cpp
1 1 // qt 2 #include <qdir.h> 3 #include <qapplication.h> 4 #include <qfontmetrics.h> 5 //Added by qt3to4: 2 #include <QDir> 3 #include <QApplication> 4 #include <QFontMetrics> 6 5 #include <QKeyEvent> 7 6 #include <QLabel> 8 7 #include <Q3Frame> -
mythmusic/mythmusic/cddecoder.cpp
2 2 #include <stdlib.h> 3 3 #include <iostream> 4 4 #include <string> 5 #include <qobject.h> 6 #include <qiodevice.h> 7 #include <qfile.h> 5 6 #include <QObject> 7 #include <QIODevice> 8 #include <QFile> 9 8 10 using namespace std; 9 11 10 12 #include "cddecoder.h" -
mythmusic/mythmusic/mythlistview-qt3.cpp
2 2 3 3 #include "mythlistview-qt3.h" 4 4 #include "q3header.h" 5 #include <QFocusEvent> 6 #include <QKeyEvent> 5 7 6 8 Q3MythListView::Q3MythListView(QWidget *parent) : Q3ListView(parent) 7 9 { -
mythmusic/mythmusic/miniplayer.h
1 1 #ifndef MINIPLAYER_H_ 2 2 #define MINIPLAYER_H_ 3 3 4 #include < qstring.h>4 #include <QString> 5 5 #include <QKeyEvent> 6 #include <QEvent> 6 7 7 8 #include "mythtv/mythdialogs.h" 8 9 9 10 class MusicPlayer; 10 class QTimer;11 11 class Metadata; 12 12 13 13 class MPUBLIC MiniPlayer : public MythThemedDialog -
mythmusic/mythmusic/goom/mythgoom.cpp
7 7 #include "goom_core.h" 8 8 } 9 9 10 #include < qpainter.h>10 #include <QPainter> 11 11 12 12 #include <math.h> 13 13 #include <stdlib.h> -
mythmusic/mythmusic/streaminput.h
1 //Added by qt3to4:2 #include <Q3CString>3 1 // Copyright (c) 2000-2001 Brad Hughes <bhughes@trolltech.com> 4 2 // 5 3 // Use, modification and distribution is allowed without limitation, … … 11 9 12 10 class StreamInput; 13 11 14 #include <q3url.h> 15 #include <q3socket.h> 12 #include <QUrl> 13 #include <Q3Socket> 14 #include <Q3CString> 16 15 17 16 18 17 class StreamInput : public QObject 19 18 { 20 19 Q_OBJECT 21 20 public: 22 StreamInput(const Q 3Url &);21 StreamInput(const QUrl &); 23 22 24 23 QIODevice *socket() { return sock; } 25 24 … … 35 34 36 35 private: 37 36 Q3CString request; 38 Q 3Url url;37 QUrl url; 39 38 Q3Socket *sock; 40 39 int stage; 41 40 }; -
mythmusic/mythmusic/visualize.h
19 19 #include "config.h" 20 20 21 21 #include <complex> 22 //Added by qt3to4: 22 23 23 #include <Q3MemArray> 24 24 25 extern "C" { 25 26 #ifdef FFTW3_SUPPORT 26 27 #include <fftw3.h> … … 41 42 } 42 43 43 44 #ifdef OPENGL_SUPPORT 44 #include < qgl.h>45 #include <QtOpenGL> 45 46 #endif 46 47 47 48 class Spectrum : public VisualBase -
mythmusic/mythmusic/metaiooggvorbiscomment.cpp
19 19 #include "metaiovorbiscomment.h" 20 20 #include "metadata.h" 21 21 #include "vcedit.h" 22 22 23 #include <vorbis/vorbisfile.h> 23 #include <qfileinfo.h>24 24 25 #include <QFileInfo> 26 25 27 //========================================================================== 26 28 MetaIOOggVorbisComment::MetaIOOggVorbisComment(void) 27 29 : MetaIO(".ogg") -
mythmusic/mythmusic/globalsettings.h
3 3 4 4 #include "mythtv/settings.h" 5 5 #include "mythtv/mythcontext.h" 6 #include "mythlistview-qt3.h" 7 #include <QKeyEvent> 8 #include <QEvent> 6 9 7 class QKeyEvent;8 class QEvent;9 class Q3MythListView;10 class Q3ListViewItem;11 12 10 class MusicGeneralSettings : public ConfigurationWizard 13 11 { 14 12 public: -
mythmusic/mythmusic/filescanner.cpp
2 2 #include <sys/stat.h> 3 3 4 4 // Qt headers 5 #include < qapplication.h>6 #include < qdir.h>5 #include <QApplication> 6 #include <QDir> 7 7 8 8 // MythTV headers 9 9 #include <mythtv/mythcontext.h> -
mythmusic/mythmusic/mythlistbox-qt3.cpp
1 1 #include "mythcontext.h" 2 2 #include "mythlistbox-qt3.h" 3 #include <QEvent> 4 #include <QKeyEvent> 5 #include <QFocusEvent> 3 6 4 7 Q3MythListBox::Q3MythListBox(QWidget* parent): Q3ListBox(parent) 5 8 { -
mythmusic/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += xml sql opengl qt3support -
mytharchive/i18n/i18n.pro
13 13 INSTALLS += trans 14 14 15 15 SOURCES += dummy.c 16 QT += xml sql qt3support -
mytharchive/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += xml sql qt3support -
mytharchive/mytharchive/mytharchive.pro
55 55 INSTALLS += profilefiles burnuifiles 56 56 INSTALLS += nativeuifiles 57 57 58 #The following line was inserted by qt3to459 58 QT += xml sql opengl 60 59 61 60 include ( ../../libs-targetfix.pro ) 61 QT += qt3support -
mytharchive/mytharchive/logviewer.cpp
5 5 // qt 6 6 #include <QKeyEvent> 7 7 #include <QFile> 8 #include <QTextStream> 8 9 9 10 // mythtv 10 11 #include <mythtv/mythcontext.h> -
mytharchive/mytharchive/thumbfinder.cpp
12 12 #include <QDir> 13 13 //#include <QFileInfo> 14 14 #include <QPainter> 15 #include <QKeyEvent> 16 #include <QPixmap> 15 17 16 18 // myth 17 19 #include <mythtv/mythcontext.h> -
mytharchive/mytharchive/videoselector.cpp
6 6 // qt 7 7 #include <QDir> 8 8 #include <QTimer> 9 #include <QKeyEvent> 9 10 10 11 // mythtv 11 12 #include <mythtv/mythcontext.h> -
mytharchive/mytharchive/logviewer.h
3 3 4 4 // qt 5 5 #include <QTimer> 6 #include <QKeyEvent> 6 7 7 8 // myth 8 9 #include <libmythui/mythscreentype.h> -
mytharchive/mytharchive/mythburn.cpp
12 12 #include <QApplication> 13 13 #include <QKeyEvent> 14 14 #include <QTextStream> 15 #include <QEvent> 15 16 16 17 // myth 17 18 #include <mythtv/mythcontext.h> -
mytharchive/mytharchive/themeselector.h
3 3 4 4 // qt 5 5 #include <QStringList> 6 #include <QKeyEvent> 6 7 7 8 // mythtv 8 9 #include <libmythui/mythscreentype.h> -
mytharchive/mytharchive/thumbfinder.h
4 4 // qt 5 5 #include <QString> 6 6 #include <QStringList> 7 #include <QKeyEvent> 7 8 8 9 // mythtv 9 10 #include <libmythui/mythscreentype.h> -
mytharchive/mytharchive/videoselector.h
15 15 16 16 // mytharchive 17 17 #include "archiveutil.h" 18 #include <QKeyEvent> 18 19 19 20 class ProgramInfo; 20 21 class MythUIText; -
mytharchive/mytharchive/mythburn.h
6 6 7 7 // mytharchive 8 8 #include "archiveutil.h" 9 #include <QEvent> 10 #include <QKeyEvent> 9 11 10 12 class MythUIText; 11 13 class MythUIButton; -
mytharchive/mytharchive/archiveutil.cpp
10 10 #include <iostream> 11 11 12 12 // qt 13 #include < qdir.h>14 #include < qdom.h>13 #include <QDir> 14 #include <QDomNode> 15 15 16 16 // myth 17 17 #include <mythcontext.h> -
mytharchive/mytharchive/fileselector.cpp
5 5 #include <QDir> 6 6 #include <QFileInfo> 7 7 #include <QVariant> 8 #include <QKeyEvent> 8 9 9 10 // Myth 10 11 #include <mythtv/mythcontext.h> -
mytharchive/mytharchive/importnative.cpp
5 5 #include <QDir> 6 6 #include <QFileInfo> 7 7 #include <QDomDocument> 8 #include <QKeyEvent> 8 9 9 10 // Myth 10 11 #include <mythtv/mythcontext.h> -
mytharchive/mytharchive/recordingselector.h
13 13 // qt 14 14 #include <QList> 15 15 #include <QStringList> 16 #include <QKeyEvent> 16 17 17 18 // mythtv 18 19 #include <libmythui/mythscreentype.h> -
mytharchive/mytharchive/dbcheck.cpp
1 1 #include <iostream> 2 2 3 3 // qt 4 #include <qstring.h> 5 #include <qdir.h> 6 //Added by qt3to4: 4 #include <QString> 5 #include <QDir> 7 6 #include <QSqlError> 8 7 9 8 // myth -
mytharchive/mytharchive/editmetadata.cpp
7 7 8 8 // mytharchive 9 9 #include "editmetadata.h" 10 #include <QKeyEvent> 10 11 11 12 EditMetadataDialog::EditMetadataDialog(MythScreenStack *parent, 12 13 ArchiveItem *source_metadata) -
mytharchive/mytharchivehelper/mytharchivehelper.pro
27 27 using_hdhomerun: LIBS += -lmythhdhomerun-$$LIBVERSION 28 28 29 29 QT += xml sql opengl 30 QT += qt3support -
mytharchive/mytharchivehelper/main.cpp
10 10 #include <sys/mount.h> 11 11 #elif __linux__ 12 12 #include <sys/vfs.h> 13 #include <QTextStream> 13 14 #endif 14 15 15 16 using namespace std; -
mythbrowser/i18n/i18n.pro
14 14 INSTALLS += trans 15 15 16 16 SOURCES += dummy.c 17 QT += sql qt3support -
mythbrowser/mythbookmarkmanager/bookmarkmanager.cpp
1 1 #include <iostream> 2 2 3 3 // qt 4 #include <qstring.h> 4 #include <QString> 5 #include <QKeyEvent> 5 6 6 7 // myth 7 8 #include <mythtv/mythcontext.h> -
mythbrowser/mythbookmarkmanager/mythbookmarkmanager.pro
15 15 SOURCES += main.cpp bookmarkmanager.cpp bookmarkeditor.cpp browserdbutil.cpp 16 16 17 17 include ( ../../libs-targetfix.pro ) 18 QT += qt3support -
mythbrowser/mythbookmarkmanager/bookmarkeditor.h
7 7 #include <mythtv/libmythui/mythuibutton.h> 8 8 #include <mythtv/libmythui/mythuitext.h> 9 9 #include <mythtv/libmythui/mythuitextedit.h> 10 #include <QKeyEvent> 10 11 11 12 12 13 class Bookmark; -
mythbrowser/mythbookmarkmanager/bookmarkmanager.h
11 11 #include <libmythui/mythuibuttonlist.h> 12 12 #include <libmythui/mythscreentype.h> 13 13 #include <libmythui/mythdialogbox.h> 14 #include <QKeyEvent> 14 15 15 16 class MythBrowser; 16 17 -
mythbrowser/mythbookmarkmanager/browserdbutil.cpp
4 4 5 5 // mythbrowser 6 6 #include "browserdbutil.h" 7 #include <QSqlError> 7 8 8 9 const QString currentDatabaseVersion = "1000"; 9 10 -
mythbrowser/mythbookmarkmanager/bookmarkeditor.cpp
9 9 #include "bookmarkeditor.h" 10 10 #include "bookmarkmanager.h" 11 11 #include "browserdbutil.h" 12 #include <QKeyEvent> 12 13 13 14 /** \brief Creates a new BookmarkEditor Screen 14 15 * \param site The bookmark we are adding/editing -
mythbrowser/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += sql qt3support -
mythbrowser/mythbrowser/mythbrowser.pro
24 24 HEADERS += ../mythbookmarkmanager/bookmarkmanager.h ../mythbookmarkmanager/browserdbutil.h 25 25 SOURCES += main.cpp mythbrowser.cpp webpage.cpp ../mythbookmarkmanager/bookmarkeditor.cpp 26 26 SOURCES += ../mythbookmarkmanager/bookmarkmanager.cpp ../mythbookmarkmanager/browserdbutil.cpp 27 QT += qt3support -
mythbrowser/mythbrowser/mythbrowser.cpp
3 3 4 4 // qt 5 5 #include <QEvent> 6 #include <QPixmap> 7 #include <QKeyEvent> 6 8 7 9 // myth 8 10 #include "mythverbose.h" -
mythbrowser/mythbrowser/mythbrowser.h
2 2 #define MYTHBROWSER_H 3 3 4 4 #include <QUrl> 5 #include <QKeyEvent> 5 6 6 7 #include <libmythui/mythuiwebbrowser.h> 7 8 #include <libmythui/mythuibuttonlist.h> -
mythbrowser/mythbrowser/webpage.cpp
4 4 // qt 5 5 #include <QEvent> 6 6 #include <QIcon> 7 #include <QPixmap> 7 8 8 9 // myth 9 10 #include "mythverbose.h" -
settings.pro
1 1 CONFIG += $$CCONFIG 2 2 3 QT += qt3support 4 3 5 LIBVERSION = 0.22 4 6 5 7 INCLUDEPATH += $${PREFIX}/include -
mythweather/i18n/i18n.pro
14 14 INSTALLS += trans 15 15 16 16 SOURCES += dummy.c 17 QT += xml sql qt3support -
mythweather/mythweather/weatherScreen.cpp
1 1 // C++ headers 2 2 #include <vector> 3 #include <QKeyEvent> 3 4 using namespace std; 4 5 5 6 // MythTV headers -
mythweather/mythweather/weather.cpp
5 5 6 6 // QT headers 7 7 #include <QApplication> 8 #include <QKeyEvent> 8 9 9 10 // MythTV headers 10 11 #include <mythdbcon.h> -
mythweather/mythweather/weatherScreen.h
4 4 // QT headers 5 5 #include <QStringList> 6 6 #include <QMap> 7 #include <QKeyEvent> 7 8 8 9 // MythTV headers 9 10 #include <mythscreentype.h> -
mythweather/mythweather/weather.h
3 3 4 4 // QT headers 5 5 #include <QList> 6 #include <QKeyEvent> 6 7 7 8 // MythTV headers 8 9 #include <mythscreentype.h> -
mythweather/mythweather/mythweather.pro
27 27 SOURCES += dbcheck.cpp weatherSetup.cpp weatherUtils.cpp 28 28 29 29 include ( ../../libs-targetfix.pro ) 30 QT += qt3support -
mythweather/mythweather/weatherSource.cpp
3 3 // QT headers 4 4 #include <QDir> 5 5 #include <QFile> 6 #include <QTextStream>7 6 #include <QApplication> 8 7 9 8 // MythTV headers -
mythweather/mythweather/weatherSetup.cpp
1 1 2 2 // QT headers 3 3 #include <QApplication> 4 #include <QKeyEvent> 5 #include <QEvent> 4 6 5 7 // MythTV headers 6 8 #include <mythdbcon.h> -
mythweather/mythweather/dbcheck.cpp
1 1 #include <QString> 2 2 #include <QDir> 3 3 #include <QStringList> 4 #include <QSqlError> 4 5 5 6 #include <mythcontext.h> 6 7 #include <mythdb.h> -
mythweather/mythweather/weatherSetup.h
3 3 4 4 // QT headers 5 5 #include <QList> 6 #include <QEvent> 7 #include <QKeyEvent> 6 8 7 9 // MythTV headers 8 10 #include <mythcontext.h> -
mythweather/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += xml sql qt3support -
mythgallery/i18n/i18n.pro
15 15 INSTALLS += trans 16 16 17 17 SOURCES += dummy.c 18 QT += sql opengl qt3support -
mythgallery/mythgallery/glsingleview.h
33 33 #include "sequence.h" 34 34 #include "gltexture.h" 35 35 36 class QImage;37 class QTimer;38 39 36 class GLSingleView; 40 37 41 38 class GLSDialog : public MythDialog -
mythgallery/mythgallery/singleview.cpp
26 26 using namespace std; 27 27 28 28 // Qt headers 29 //#include <qevent.h>30 29 #include <QImage> 31 30 #include <QTimer> 32 31 #include <QPainter> -
mythgallery/mythgallery/mythgallery.pro
36 36 } 37 37 38 38 39 #The following line was inserted by qt3to440 39 QT += network opengl sql xml 41 40 42 41 include ( ../../libs-targetfix.pro ) 42 QT += qt3support -
mythgallery/mythgallery/thumbview.h
10 10 #include <QPixmap> 11 11 12 12 class MythMediaDevice; 13 class QPixmap;14 13 15 14 class ThumbItem 16 15 { -
mythgallery/mythgallery/singleview.h
40 40 #include "iconview.h" 41 41 #include "sequence.h" 42 42 43 class QTimer;44 45 43 class SingleView : public MythDialog, public ImageView 46 44 { 47 45 Q_OBJECT -
mythgallery/mythgallery/imageview.h
28 28 #include "iconview.h" 29 29 #include "sequence.h" 30 30 31 class QImage;32 class QTimer;33 31 class ThumbItem; 34 32 35 33 class ImageView -
mythgallery/mythgallery/iconview.cpp
20 20 21 21 // C++ headers 22 22 #include <algorithm> 23 #include <QKeyEvent> 23 24 24 25 using namespace std; 25 26 -
mythgallery/mythgallery/dbcheck.cpp
1 1 #include <iostream> 2 #include <QSqlError> 2 3 using namespace std; 3 4 4 5 // qt -
mythgallery/mythgallery/iconview.h
25 25 #include <QStringList> 26 26 #include <QList> 27 27 #include <QHash> 28 #include <QEvent> 29 #include <QKeyEvent> 28 30 29 31 // MythTV headers 30 32 #include <mythtv/libmythui/mythscreentype.h> -
mythgallery/mythgallery/thumbgenerator.h
26 26 #include <QString> 27 27 #include <QStringList> 28 28 #include <QImage> 29 #include <QEvent> 29 30 30 class QObject;31 class QImage;32 33 31 typedef struct { 34 32 QImage thumb; 35 33 QString fileName; -
mythgallery/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += sql opengl qt3support -
mythmovies/ignyte/main.cpp
1 #include <qapplication.h> 1 #include <QApplication> 2 2 3 #include "ignytegrabber.h" 3 4 4 5 using namespace std; -
mythmovies/ignyte/ignyte.pro
14 14 # Input 15 15 HEADERS += ignytegrabber.h mythsoap.h 16 16 SOURCES += main.cpp ignytegrabber.cpp mythsoap.cpp 17 QT += qt3support -
mythmovies/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += xml qt3support -
mythmovies/mythmovies/mythmovies.pro
18 18 SOURCES += main.cpp moviesui.cpp moviessettings.cpp 19 19 20 20 include ( ../../libs-targetfix.pro ) 21 QT += qt3support -
mythmovies/mythmovies/moviesui.h
12 12 // mythmovies 13 13 #include "helperobjects.h" 14 14 15 class QTimer;16 class QDomNode;17 15 class MythUIText; 18 16 class MythUIButtonTree; 19 17 class MythGenericTree; -
mythflix/i18n/i18n.pro
12 12 INSTALLS += trans 13 13 14 14 SOURCES += dummy.c 15 QT += xml sql qt3support -
mythflix/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += xml sql qt3support -
mythflix/mythflix/newsengine.cpp
21 21 22 22 #include <iostream> 23 23 24 #include < qfile.h>25 #include < qdatastream.h>26 #include < qdom.h>27 #include < q3urloperator.h>24 #include <QFile> 25 #include <QDataStream> 26 #include <QDomNode> 27 #include <Q3UrlOperator> 28 28 #include <q3network.h> 29 29 30 30 extern "C" { -
mythflix/mythflix/mythflix.cpp
6 6 #include <QApplication> 7 7 #include <QDir> 8 8 #include <Q3Process> 9 #include <QKeyEvent> 10 #include <QEvent> 9 11 10 12 // MythTV headers 11 13 #include <mythtv/util.h> -
mythflix/mythflix/newsengine.h
27 27 #include <QObject> 28 28 #include <QDateTime> 29 29 #include <QMetaType> 30 #include <Q3UrlOperator> 30 31 31 class Q3UrlOperator;32 class Q3NetworkOperation;33 32 class NewsSite; 34 33 35 34 // ------------------------------------------------------- -
mythflix/mythflix/mythflixqueue.cpp
7 7 #include <QApplication> 8 8 #include <QDateTime> 9 9 #include <QDir> 10 #include <QKeyEvent> 11 #include <QEvent> 10 12 11 13 // MythTV headers 12 14 #include <mythtv/util.h> -
mythflix/mythflix/mythflix.h
9 9 #include <mythtv/libmythui/mythdialogbox.h> 10 10 11 11 #include "newsengine.h" 12 #include <QKeyEvent> 13 #include <QEvent> 12 14 13 15 /** \class MythFlix 14 16 * \brief The netflix browser class. -
mythflix/mythflix/mythflixqueue.h
9 9 #include <mythtv/libmythui/mythdialogbox.h> 10 10 11 11 #include "newsengine.h" 12 #include <QKeyEvent> 13 #include <QEvent> 12 14 13 15 /** \class MythFlix 14 16 * \brief The netflix queue browser class. -
mythflix/mythflix/mythflix.pro
23 23 SOURCES += main.cpp mythflixqueue.cpp mythflix.cpp mythflixconfig.cpp 24 24 SOURCES += newsengine.cpp dbcheck.cpp flixutil.cpp 25 25 26 27 #The following line was inserted by qt3to428 26 QT += network xml sql opengl qt3support 29 27 30 28 include ( ../../libs-targetfix.pro ) -
mythflix/mythflix/dbcheck.cpp
1 #include < qstring.h>2 #include < qdir.h>1 #include <QString> 2 #include <QDir> 3 3 #include <QSqlError> 4 4 5 5 #include <iostream> 6 6 7 using namespace std; 7 8 8 9 #include "dbcheck.h" -
mythvideo/i18n/i18n.pro
16 16 17 17 SOURCES += dummy.c 18 18 19 QT += network qt3support -
mythvideo/theme/theme.pro
24 24 25 25 # Input 26 26 SOURCES += ../../themedummy.c 27 QT += network qt3support -
mythvideo/mtd/jobthread.cpp
14 14 #include <unistd.h> 15 15 16 16 #include <algorithm> 17 #include <QTimerEvent> 17 18 using namespace std; 18 19 19 20 #include <QDateTime> -
mythvideo/mtd/mtd.pro
21 21 mingw:DEFINES += USING_MINGW 22 22 23 23 win32:LIBS += -lws2_32 24 QT += opengl qt3support -
mythvideo/mtd/mtd.cpp
23 23 #include <QRegExp> 24 24 #include <QTimer> 25 25 #include <QDir> 26 #include <QEvent> 26 27 27 28 // MythTV headers 28 29 #include <mythtv/util.h> -
mythvideo/mtd/logging.cpp
12 12 #include <unistd.h> 13 13 #include <cstdlib> 14 14 #include <QDateTime> 15 #include <QTextStream> 15 16 16 17 #include <mythtv/mythcontext.h> 17 18 -
mythvideo/mtd/jobthread.h
15 15 #include <QDateTime> 16 16 #include <QThread> 17 17 #include <QMutex> 18 #include <QTimerEvent> 19 #include <QProcess> 20 #include <QWaitCondition> 21 #include <QDir> 18 22 19 23 #include "fileobs.h" 20 24 21 class QProcess;22 class QDir;23 25 class MythTranscodeDaemon; 24 class QWaitCondition;25 class QTimerEvent;26 26 27 27 /** \class JobThread 28 28 * \brief Base class for all MythTranscodeDaemon threads -
mythvideo/mtd/mtd.h
12 12 13 13 #include <QObject> 14 14 #include <QList> 15 #include <QEvent> 16 #include <QTcpSocket> 17 #include <QTcpServer> 18 #include <QTimer> 15 19 16 20 #include "logging.h" 17 21 #include "jobthread.h" 18 22 #include "dvdprobe.h" 19 23 #include "threadevents.h" 20 24 21 class QStringList;22 class QTimer;23 class QMutex;24 class QTcpServer;25 class QTcpSocket;26 class QWaitCondition;27 28 25 class MythTranscodeDaemon; 29 26 30 27 class DiscCheckingThread : public QThread -
mythvideo/mtd/threadevents.cpp
11 11 */ 12 12 13 13 #include "threadevents.h" 14 #include <QEvent> 14 15 15 16 LoggingEvent::LoggingEvent(const QString &init_logging_string) : 16 17 QEvent(QEvent::Type(ID)), -
mythvideo/mythvideo/videodlg.h
3 3 4 4 #include <QPointer> 5 5 #include <QStringList> 6 #include <QKeyEvent> 7 #include <QEvent> 6 8 7 9 #include <mythtv/libmythui/mythscreentype.h> 8 10 … … 22 24 class Metadata; 23 25 class VideoScanner; 24 26 25 class QUrl;26 27 27 typedef QMap<QString, QString> SearchListResults; 28 28 29 29 enum CoverDownloadErrorState { esOK, esError, esTimeout }; -
mythvideo/mythvideo/titledialog.h
2 2 #define TITLEDIALOG_H_ 3 3 4 4 #include <QList> 5 #include <QTcpSocket> 5 6 6 7 #include <mythtv/libmythui/mythscreentype.h> 7 8 8 9 #include "dvdinfo.h" 9 10 10 class QTcpSocket;11 12 11 class MythUIButtonList; 13 12 class MythUIButtonListItem; 14 13 class MythUIText; -
mythvideo/mythvideo/videoscan.h
3 3 4 4 #include <QObject> // for moc 5 5 6 class QStringList;7 8 6 class VideoScanner : public QObject 9 7 { 10 8 Q_OBJECT -
mythvideo/mythvideo/editmetadata.h
2 2 #define EDITMETADATA_H_ 3 3 4 4 #include <mythtv/libmythui/mythscreentype.h> 5 #include <QEvent> 5 6 6 7 class Metadata; 7 8 class MetadataListManager; -
mythvideo/mythvideo/videodlg.cpp
11 11 #include <QBuffer> 12 12 #include <QUrl> 13 13 #include <QImageReader> 14 #include <QKeyEvent> 15 #include <QEvent> 14 16 15 17 #include <mythtv/mythcontext.h> 16 18 #include <mythtv/compat.h> -
mythvideo/mythvideo/dvdripbox.cpp
2 2 #include <QProcess> 3 3 #include <QRegExp> 4 4 #include <QTimer> 5 #include <QTextStream> 5 6 6 7 #include <mythtv/mythcontext.h> 7 8 #include <mythtv/mythmediamonitor.h> -
mythvideo/mythvideo/titledialog.cpp
1 1 #include <QRegExp> 2 2 3 3 #include <QTcpSocket> 4 #include <QTextStream> 4 5 5 6 #include <mythtv/util.h> 6 7 #include <mythtv/mythcontext.h> -
mythvideo/mythvideo/mythvideo.pro
49 49 mingw:DEFINES += USING_MINGW 50 50 51 51 QT += sql xml network 52 QT += qt3support -
mythvideo/mythvideo/editmetadata.cpp
1 1 #include <algorithm> 2 2 3 3 #include <QImageReader> 4 #include <QEvent> 4 5 5 6 #include <mythtv/mythcontext.h> 6 7 #include <mythtv/mythdirs.h> -
mythgame/i18n/i18n.pro
15 15 16 16 SOURCES += dummy.c 17 17 18 QT += sql qt3support -
mythgame/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += sql qt3support -
mythgame/mythgame/gametree.h
1 1 #ifndef GAMETREE_H_ 2 2 #define GAMETREE_H_ 3 3 4 #include <qtimer.h> 5 #include <qmutex.h> 6 #include <q3valuevector.h> 7 #include <q3ptrvector.h> 8 //Added by qt3to4: 4 #include <QTimer> 5 #include <QMutex> 6 #include <Q3ValueVector> 7 #include <Q3PtrVector> 9 8 #include <QSqlQuery> 10 9 #include <QKeyEvent> 11 10 -
mythgame/mythgame/rom_metadata.h
1 1 #ifndef ROMMETADATA_H_ 2 2 #define ROMMETADATA_H_ 3 3 4 #include <qobject.h> 5 #include <q3ptrlist.h> 6 #include <qstringlist.h> 4 #include <QObject> 5 #include <Q3PtrList> 6 #include <QStringList> 7 #include <QDir> 8 #include <QString> 9 #include <QWidget> 10 7 11 #include <iostream> 8 #include <qdir.h>9 #include <qstring.h>10 #include <qwidget.h>11 12 12 13 13 #include <mythtv/mythcontext.h> 14 14 #include <mythtv/mythdbcon.h> 15 15 #include <mythtv/mythdialogs.h> -
mythgame/mythgame/romedit.cpp
1 #include < qstring.h>1 #include <QString> 2 2 3 3 #include <mythtv/mythcontext.h> 4 4 -
mythgame/mythgame/gamehandler.cpp
2 2 #include "rominfo.h" 3 3 #include "rom_metadata.h" 4 4 5 #include <qobject.h> 6 #include <q3ptrlist.h> 7 #include <qstringlist.h> 5 #include <QObject> 6 #include <Q3PtrList> 7 #include <QStringList> 8 #include <QDir> 9 #include <QRegExp> 10 8 11 #include <iostream> 9 #include <qdir.h>10 #include <qregexp.h>11 12 12 13 #include <mythtv/mythcontext.h> 13 14 #include <mythtv/mythdbcon.h> -
mythgame/mythgame/romedit.h
1 1 #ifndef ROMEDITDLG_H_ 2 2 #define ROMEDITDLG_H_ 3 3 4 #include < qstring.h>4 #include <QString> 5 5 6 6 #include <mythtv/mythcontext.h> 7 7 #include <mythtv/settings.h> -
mythgame/mythgame/rominfo.cpp
1 #include < qfile.h>1 #include <QFile> 2 2 3 3 #include <mythtv/mythdb.h> 4 4 -
mythgame/mythgame/gamehandler.h
2 2 #ifndef GAMEHANDLER_H_ 3 3 #define GAMEHANDLER_H_ 4 4 5 #include < qstring.h>6 #include < qwidget.h>5 #include <QString> 6 #include <QWidget> 7 7 8 8 #include "rom_metadata.h" 9 9 #include "rominfo.h" … … 12 12 13 13 class MythMainWindow; 14 14 class GameHandler; 15 class QObject;16 15 17 16 enum GameFound 18 17 { -
mythgame/mythgame/rominfo.h
1 1 #ifndef ROMINFO_H_ 2 2 #define ROMINFO_H_ 3 3 4 #include < qstring.h>4 #include <QString> 5 5 6 6 int romInDB(QString rom, QString gametype); 7 7 -
mythgame/mythgame/dbcheck.cpp
1 #include <qstring.h> 2 //Added by qt3to4: 1 #include <QString> 3 2 #include <QSqlError> 4 3 5 4 #include <iostream> 5 6 6 using namespace std; 7 7 8 8 #include "dbcheck.h" -
mythgame/mythgame/mythgame.pro
21 21 22 22 LIBS += -lz 23 23 24 #The following line was inserted by qt3to425 24 QT += xml sql opengl qt3support 26 25 27 26 include ( ../../libs-targetfix.pro ) -
mythgame/mythgame/gametree.cpp
1 #include <qapplication.h> 2 #include <qpushbutton.h> 3 //Added by qt3to4: 1 #include <QApplication> 2 #include <QPushButton> 4 3 #include <QSqlQuery> 5 4 #include <QKeyEvent> 5 6 6 #include <stdlib.h> 7 7 #include <iostream> 8 8 9 using namespace std; 9 10 10 11 #include <mythtv/mythcontext.h> -
mythgame/mythgame/gamesettings.cpp
2 2 #include <mythtv/mythdb.h> 3 3 4 4 #include "gamesettings.h" 5 #include <qfile.h>6 #include <qdialog.h>7 #include <qcursor.h>8 #include <qdir.h>9 #include <qimage.h>10 5 6 #include <QFile> 7 #include <QDialog> 8 #include <QCursor> 9 #include <QDir> 10 #include <QImage> 11 11 12 12 13 const QString GetGameExtensions(const QString GameType) 13 14 { 14 15 QString result = ""; -
mythgame/mythgame/rom_metadata.cpp
1 #include <qobject.h> 2 #include <q3ptrlist.h> 3 #include <qstringlist.h> 1 #include <QObject> 2 #include <Q3PtrList> 3 #include <QStringList> 4 #include <QDir> 5 #include <QString> 6 #include <QWidget> 7 4 8 #include <iostream> 5 #include <qdir.h>6 #include <qstring.h>7 #include <qwidget.h>8 9 9 10 10 #include <mythtv/mythcontext.h> 11 11 #include <mythtv/mythdbcon.h> 12 12 #include <mythtv/mythdialogs.h> -
mythzoneminder/mythzmserver/mythzmserver.pro
16 16 HEADERS += zmserver.h 17 17 18 18 SOURCES += main.cpp zmserver.cpp 19 QT += qt3support -
mythzoneminder/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += qt3support -
mythzoneminder/mythzoneminder/zmplayer.cpp
16 16 #include <cstdlib> 17 17 18 18 // qt 19 #include < qdatetime.h>20 #include < qpainter.h>21 #include < qdir.h>22 #include < qtimer.h>19 #include <QDateTime> 20 #include <QPainter> 21 #include <QDir> 22 #include <QTimer> 23 23 #include <QKeyEvent> 24 24 25 25 // myth -
mythzoneminder/mythzoneminder/zmconsole.cpp
18 18 19 19 // qt 20 20 #include <QTimer> 21 #include <QKeyEvent> 21 22 22 23 // myth 23 24 #include "mythtv/mythcontext.h" -
mythzoneminder/mythzoneminder/zmliveplayer.h
17 17 18 18 // c++ 19 19 #include <vector> 20 #include <QKeyEvent> 20 21 using namespace std; 21 22 22 23 // qt -
mythzoneminder/mythzoneminder/mythzoneminder.pro
21 21 QT += sql xml 22 22 23 23 include ( ../../libs-targetfix.pro ) 24 QT += qt3support -
mythnews/i18n/i18n.pro
15 15 INSTALLS += trans 16 16 17 17 SOURCES += dummy.c 18 QT += xml sql qt3support -
mythnews/theme/theme.pro
22 22 23 23 # Input 24 24 SOURCES += ../../themedummy.c 25 QT += xml sql qt3support -
mythnews/mythnews/mythnewsconfig.cpp
2 2 #include <QApplication> 3 3 #include <QStringList> 4 4 #include <QFile> 5 #include <QKeyEvent> 5 6 6 7 // MythTV headers 7 8 #include <mythuitext.h> -
mythnews/mythnews/newssite.h
15 15 #include <QDomDocument> 16 16 #include <QVariant> 17 17 #include <QByteArray> 18 #include <QUrl> 19 #include <QHttp> 18 20 19 21 // MythNews headers 20 22 #include "newsarticle.h" -
mythnews/mythnews/mythnewsconfig.h
3 3 4 4 // Qt headers 5 5 #include <QMutex> 6 #include <QKeyEvent> 6 7 7 8 // MythTV headers 8 9 #include <mythscreentype.h> -
mythnews/mythnews/mythnews.cpp
11 11 #include <QTimer> 12 12 #include <QRegExp> 13 13 #include <QUrl> 14 #include <QKeyEvent> 15 #include <QEvent> 14 16 15 17 // MythTV headers 16 18 #include <mythuitext.h> -
mythnews/mythnews/mythnews.h
7 7 8 8 // MythNews headers 9 9 #include "newssite.h" 10 #include <QEvent> 11 #include <QKeyEvent> 10 12 11 class QTimer;12 13 class HtppComms; 13 14 class MythUIText; 14 15 class MythUIImage; -
mythnews/mythnews/newsdbutil.h
1 1 #ifndef NEWSDBUTIL_H_ 2 2 #define NEWSDBUTIL_H_ 3 3 4 class QString;5 4 class NewsSiteItem; 6 5 7 6 bool findInDB(const QString &name); -
mythnews/mythnews/mythnewseditor.cpp
14 14 #include "mythnewseditor.h" 15 15 #include "newsdbutil.h" 16 16 #include "newssite.h" 17 #include <QKeyEvent> 17 18 18 19 #define LOC QString("MythNewsEditor: ") 19 20 #define LOC_WARN QString("MythNewsEditor, Warning: ") -
mythnews/mythnews/mythnewseditor.h
4 4 // Qt headers 5 5 #include <QMutex> 6 6 #include <QString> 7 #include <QKeyEvent> 7 8 8 9 // MythTV headers 9 10 #include <mythscreentype.h> -
mythnews/mythnews/mythnews.pro
29 29 SOURCES += main.cpp 30 30 31 31 include ( ../../libs-targetfix.pro ) 32 QT += qt3support