2018-08-07 Fred Gleason <fredg@paravelsystems.com>

* Removed the 'pam_rd' plug-in.
	* Removed rdchunk(1).
	* Upgraded Qt3 to Qt4.
This commit is contained in:
Fred Gleason
2018-08-07 10:09:49 -04:00
parent 6b1a06a910
commit 796e1bebc3
774 changed files with 10347 additions and 10823 deletions

View File

@@ -6,7 +6,7 @@
##
## Use automake to process this into a Makefile.in
##
## (C) Copyright 2002-2007,2016 Fred Gleason <fredg@paravelsystems.com>
## (C) Copyright 2002-2007,2016-2018 Fred Gleason <fredg@paravelsystems.com>
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License version 2 as
@@ -22,8 +22,8 @@
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
##
AM_CPPFLAGS = -Wall -DPREFIX=\"$(prefix)\" -DQTDIR=\"@QT_DIR@\" @QT_CXXFLAGS@ -I$(top_srcdir)/lib
LIBS = @QT_LIBS@ -L$(top_srcdir)/lib
AM_CPPFLAGS = -Wall -DPREFIX=\"$(prefix)\" -I$(top_srcdir)/lib @QT4_CFLAGS@ -DQT3_SUPPORT -I/usr/include/Qt3Support
LIBS = -L$(top_srcdir)/lib
MOC = @QT_MOC@
CWRAP = ../helpers/cwrap
@@ -46,8 +46,8 @@ uninstall-local:
rm -f $(DESTDIR)$(prefix)/share/rivendell/rdhpi_*.qm
all:
@QT_BIN@/lupdate rdhpi.pro
@QT_BIN@/lrelease rdhpi.pro
lupdate-qt4 rdhpi.pro
lrelease-qt4 rdhpi.pro
lib_LTLIBRARIES = librdhpi.la
dist_librdhpi_la_SOURCES = rdhpicardselector.cpp rdhpicardselector.h\

View File

@@ -1,4 +1,6 @@
<!DOCTYPE TS><TS>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>RDHPIPlayStream</name>
<message>

View File

@@ -1,4 +1,6 @@
<!DOCTYPE TS><TS>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>RDHPIPlayStream</name>
<message>

View File

@@ -1,4 +1,6 @@
<!DOCTYPE TS><TS>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>RDHPIPlayStream</name>
<message>

View File

@@ -1,4 +1,6 @@
<!DOCTYPE TS><TS>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>RDHPIPlayStream</name>
<message>

View File

@@ -1,4 +1,6 @@
<!DOCTYPE TS><TS>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>RDHPIPlayStream</name>
<message>

View File

@@ -1,4 +1,6 @@
<!DOCTYPE TS><TS>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>RDHPIPlayStream</name>
<message>

View File

@@ -1,4 +1,6 @@
<!DOCTYPE TS><TS>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0">
<context>
<name>RDHPIPlayStream</name>
<message>

View File

@@ -23,12 +23,12 @@
#include <qpushbutton.h>
#include <qradiobutton.h>
#include <qlineedit.h>
#include <qtextedit.h>
#include <q3textedit.h>
#include <qlabel.h>
#include <qpainter.h>
#include <qevent.h>
#include <qmessagebox.h>
#include <qbuttongroup.h>
#include <q3buttongroup.h>
#include <rdhpisoundcard.h>
#include <rdhpicardselector.h>
@@ -53,7 +53,7 @@ RDHPICardSelector::RDHPICardSelector(QWidget *parent)
card_title=new QLabel(this);
card_title->setGeometry(0,0,geometry().width(),19);
card_title->setFont(font);
card_title->setAlignment(AlignHCenter);
card_title->setAlignment(Qt::AlignHCenter);
card_title->hide();
//
@@ -68,7 +68,7 @@ RDHPICardSelector::RDHPICardSelector(QWidget *parent)
connect(card_card_box,SIGNAL(valueChanged(int)),this,SLOT(cardData(int)));
card_card_label=new QLabel(card_card_box,"Card:",this);
card_card_label->setGeometry(0,yoffset+2,55,19);
card_card_label->setAlignment(AlignRight|ShowPrefix);
card_card_label->setAlignment(Qt::AlignRight|Qt::TextShowMnemonic);
//
// Port
@@ -81,7 +81,7 @@ RDHPICardSelector::RDHPICardSelector(QWidget *parent)
connect(card_port_box,SIGNAL(valueChanged(int)),this,SLOT(portData(int)));
card_port_label=new QLabel(card_port_box,"Port:",this);
card_port_label->setGeometry(0,yoffset+24,55,19);
card_port_label->setAlignment(AlignRight|ShowPrefix);
card_port_label->setAlignment(Qt::AlignRight|Qt::TextShowMnemonic);
}

View File

@@ -36,7 +36,7 @@
RDHPISoundSelector::RDHPISoundSelector(RDHPISoundCard::DeviceClass dev_class,
QWidget *parent)
:QListBox(parent)
:Q3ListBox(parent)
{
sound_card=new RDHPISoundCard(this);

View File

@@ -29,7 +29,7 @@
#include <qstring.h>
#include <qdatetime.h>
#include <qtimer.h>
#include <qlistbox.h>
#include <q3listbox.h>
#include <rdhpisoundcard.h>
@@ -41,7 +41,7 @@
#include <jack/jack.h>
#endif // JACK
class RDHPISoundSelector : public QListBox
class RDHPISoundSelector : public Q3ListBox
{
Q_OBJECT