mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-05 16:34:09 +02:00
160 lines
4.8 KiB
C++
160 lines
4.8 KiB
C++
// rdlibrary.h
|
|
//
|
|
// Library Utility for Rivendell.
|
|
//
|
|
// (C) Copyright 2002-2019 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
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#ifndef RDLIBRARY_H
|
|
#define RDLIBRARY_H
|
|
|
|
#include <qprogressdialog.h>
|
|
|
|
#include <rdsimpleplayer.h>
|
|
#include <qcombobox.h>
|
|
#include <qcheckbox.h>
|
|
|
|
#include <rdwidget.h>
|
|
|
|
#include "disk_gauge.h"
|
|
#include "lib_listview.h"
|
|
|
|
#define RDLIBRARY_GEOMETRY_FILE ".rdlibrary"
|
|
#define RDLIBRARY_STEP_SIZE 5000
|
|
|
|
//
|
|
// Cut Length Deviation Values
|
|
//
|
|
#define RDLIBRARY_MID_LENGTH_LIMIT 500
|
|
#define RDLIBRARY_MID_LENGTH_COLOR Qt::darkYellow
|
|
#define RDLIBRARY_MAX_LENGTH_LIMIT 1500
|
|
#define RDLIBRARY_MAX_LENGTH_COLOR Qt::red
|
|
#define RDLIBRARY_ENFORCE_LENGTH_COLOR Qt::blue
|
|
|
|
#define RDLIBRARY_USAGE "[--profile-ripping]\n\n--profile-ripping\n Print profiling information to stdout when performing rips from\n optical media.\n\n"
|
|
|
|
class MainWidget : public RDWidget
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
enum Column {Icon=0,Cart=1,Group=2,Length=3,Talk=4,Title=5,Artist=6,
|
|
Start=7,End=8,Album=9,Label=10,Composer=11,Conductor=12,
|
|
Publisher=13,Client=14,Agency=15,UserDefined=16,
|
|
Cuts=17,LastCutPlayed=18,EnforceLength=19,PreservePitch=20,
|
|
LengthDeviation=21,OwnedBy=22};
|
|
MainWidget(RDConfig *c,QWidget *parent=0);
|
|
QSize sizeHint() const;
|
|
QSizePolicy sizePolicy() const;
|
|
|
|
private slots:
|
|
void caeConnectedData(bool state);
|
|
void userData();
|
|
void filterChangedData(const QString &str);
|
|
void searchClickedData();
|
|
void clearClickedData();
|
|
void groupActivatedData(const QString &str);
|
|
void addData();
|
|
void editData();
|
|
void deleteData();
|
|
void macroData();
|
|
void ripData();
|
|
void reportsData();
|
|
void playerShortcutData();
|
|
void cartOnItemData(Q3ListViewItem *item);
|
|
void cartClickedData();
|
|
void cartDoubleclickedData(Q3ListViewItem *,const QPoint &,int);
|
|
void audioChangedData(int state);
|
|
void macroChangedData(int state);
|
|
void searchLimitChangedData(int state);
|
|
void dragsChangedData(int state);
|
|
void notificationReceivedData(RDNotification *notify);
|
|
void quitMainWidget();
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *e);
|
|
void closeEvent(QCloseEvent *e);
|
|
|
|
private:
|
|
void RefreshList();
|
|
void RefreshCuts(RDListViewItem *p,unsigned cartnum);
|
|
QString WhereClause() const;
|
|
void RefreshLine(RDListViewItem *item);
|
|
void UpdateItemColor(RDListViewItem *item,RDCart::Validity validity,
|
|
const QDateTime &end_datetime,
|
|
const QDateTime ¤t_datetime);
|
|
void SetCaption(QString user);
|
|
QString GetTypeFilter() const;
|
|
QString GeometryFile();
|
|
void LoadGeometry();
|
|
void SaveGeometry();
|
|
void LockUser();
|
|
bool UnlockUser();
|
|
void SendNotification(RDNotification::Action action,unsigned cartnum);
|
|
LibListView *lib_cart_list;
|
|
QString lib_filter_text;
|
|
QString lib_search_text;
|
|
QPixmap *lib_playout_map;
|
|
QPixmap *lib_macro_map;
|
|
QPixmap *lib_track_cart_map;
|
|
QLineEdit *lib_filter_edit;
|
|
QLabel *lib_filter_label;
|
|
QComboBox *lib_group_box;
|
|
QLabel *lib_group_label;
|
|
QComboBox *lib_codes_box;
|
|
QLabel *lib_codes_label;
|
|
QComboBox *lib_codes2_box;
|
|
QLabel *lib_codes2_label;
|
|
QLineEdit *lib_matches_edit;
|
|
QLabel *lib_matches_label;
|
|
QPushButton *lib_search_button;
|
|
QPushButton *lib_clear_button;
|
|
QPushButton *lib_add_button;
|
|
QPushButton *lib_edit_button;
|
|
QPushButton *lib_delete_button;
|
|
QPushButton *lib_rip_button;
|
|
QPushButton *lib_reports_button;
|
|
QPushButton *lib_close_button;
|
|
QPushButton *lib_macro_button;
|
|
RDMacroEvent *lib_macro_events;
|
|
RDSimplePlayer *lib_player;
|
|
int lib_output_card;
|
|
int lib_output_port;
|
|
QCheckBox *lib_allowdrag_box;
|
|
QLabel *lib_allowdrag_label;
|
|
QCheckBox *lib_showaudio_box;
|
|
QLabel *lib_showaudio_label;
|
|
QCheckBox *lib_showmacro_box;
|
|
QLabel *lib_shownotes_label;
|
|
QCheckBox *lib_shownotes_box;
|
|
QLabel *lib_showmatches_label;
|
|
QCheckBox *lib_showmatches_box;
|
|
QLabel *lib_showmacro_label;
|
|
QString lib_default_group;
|
|
QString lib_import_path;
|
|
QPixmap *lib_rivendell_map;
|
|
RDStation::FilterMode lib_filter_mode;
|
|
QProgressDialog *lib_progress_dialog;
|
|
bool profile_ripping;
|
|
bool lib_edit_pending;
|
|
bool lib_user_changed;
|
|
QTimer *lib_user_timer;
|
|
bool lib_resize;
|
|
std::vector<unsigned> lib_deleted_carts;
|
|
};
|
|
|
|
|
|
#endif // RDLIBRARY_H
|