mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-13 16:15:51 +01:00
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:
@@ -26,14 +26,20 @@
|
||||
#include <qpixmap.h>
|
||||
#include <qimage.h>
|
||||
#include <qlineedit.h>
|
||||
#include <qpointarray.h>
|
||||
#include <q3pointarray.h>
|
||||
#include <qcursor.h>
|
||||
#include <qpopupmenu.h>
|
||||
#include <q3popupmenu.h>
|
||||
#include <qlabel.h>
|
||||
#include <qspinbox.h>
|
||||
#include <qtimer.h>
|
||||
#include <qnamespace.h>
|
||||
#include <qcheckbox.h>
|
||||
//Added by qt3to4:
|
||||
#include <Q3RangeControl>
|
||||
#include <QCloseEvent>
|
||||
#include <QPaintEvent>
|
||||
#include <QMouseEvent>
|
||||
#include <QKeyEvent>
|
||||
|
||||
#include <rdmarker_edit.h>
|
||||
#include <rdtransportbutton.h>
|
||||
@@ -61,9 +67,9 @@
|
||||
//
|
||||
// Widget Colors
|
||||
//
|
||||
#define EDITAUDIO_PLAY_COLOR white
|
||||
#define EDITAUDIO_REMOVE_FLASH_COLOR blue
|
||||
#define EDITAUDIO_WAVEFORM_COLOR black
|
||||
#define EDITAUDIO_PLAY_COLOR Qt::white
|
||||
#define EDITAUDIO_REMOVE_FLASH_COLOR Qt::blue
|
||||
#define EDITAUDIO_WAVEFORM_COLOR Qt::black
|
||||
#define EDITAUDIO_HIGHLIGHT_COLOR colorGroup().mid()
|
||||
|
||||
class RDEditAudio : public QDialog
|
||||
@@ -141,9 +147,12 @@ class RDEditAudio : public QDialog
|
||||
void DrawMaps();
|
||||
void UpdateCursors();
|
||||
void DrawCursors(int xpos,int ypos,int xsize,int ysize,int chan);
|
||||
// int DrawCursor(int xpos,int ypos,int xsize,int ysize,int chan,
|
||||
// int samp,int prev,QColor color,Arrow arrow,int apos,
|
||||
// RDEditAudio::CuePoints pt,Qt::RasterOp op=Qt::CopyROP);
|
||||
int DrawCursor(int xpos,int ypos,int xsize,int ysize,int chan,
|
||||
int samp,int prev,QColor color,Arrow arrow,int apos,
|
||||
RDEditAudio::CuePoints pt,Qt::RasterOp op=Qt::CopyROP);
|
||||
RDEditAudio::CuePoints pt);
|
||||
void EraseCursor(int xpos,int ypos,int xsize,int ysize,int chan,
|
||||
int samp,int prev,QColor color,Arrow arrow,int apos);
|
||||
void DrawWave(int xsize,int ysize,int chan,QString label,QPixmap *pix);
|
||||
@@ -155,7 +164,7 @@ class RDEditAudio : public QDialog
|
||||
unsigned edit_sample_rate;
|
||||
unsigned edit_sample_length;
|
||||
unsigned edit_channels;
|
||||
QPopupMenu *edit_menu;
|
||||
Q3PopupMenu *edit_menu;
|
||||
QScrollBar *edit_hscroll;
|
||||
QImage edit_left_ref_image;
|
||||
QImage edit_right_ref_image;
|
||||
@@ -168,7 +177,7 @@ class RDEditAudio : public QDialog
|
||||
RDMarkerEdit *edit_cursor_edit[RDEditAudio::LastMarker];
|
||||
QCursor *edit_arrow_cursor;
|
||||
QCursor *edit_cross_cursor;
|
||||
QPointArray *edit_wave_array;
|
||||
Q3PointArray *edit_wave_array;
|
||||
QSpinBox *edit_trim_box;
|
||||
RDMarkerButton *edit_cue_button[RDEditAudio::LastMarker];
|
||||
QString edit_cue_string;
|
||||
@@ -180,7 +189,7 @@ class RDEditAudio : public QDialog
|
||||
RDTransportButton *edit_pause_button;
|
||||
RDTransportButton *edit_stop_button;
|
||||
RDStereoMeter *edit_meter;
|
||||
QRangeControl *edit_gain_control;
|
||||
Q3RangeControl *edit_gain_control;
|
||||
RDMarkerEdit *edit_gain_edit;
|
||||
QTimer *edit_gain_timer;
|
||||
QTimer *edit_meter_timer;
|
||||
|
||||
Reference in New Issue
Block a user