Rivendellaudio/lib/rdlog_icons.cpp
Fred Gleason c27e953186 2020-12-26 Fred Gleason <fredg@paravelsystems.com>
* Added a 'RDLogListModel' class.
	* Added a 'RDLogIcons::listIcon()' method.
	* Refactored rdlogedit(1) to use 'RDLogListModel'.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2020-12-26 20:02:44 -05:00

78 lines
2.3 KiB
C++

// rdlog_icons.cpp
//
// Icons for Rivendell log events.
//
// (C) Copyright 2020 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.
//
#include "rdlog_icons.h"
//
// Icons
//
#include "../icons/greencheckmark.xpm"
#include "../icons/redx.xpm"
#include "../icons/blueball.xpm"
#include "../icons/greenball.xpm"
#include "../icons/redball.xpm"
#include "../icons/whiteball.xpm"
#include "../icons/play.xpm"
#include "../icons/rml5.xpm"
#include "../icons/chain.xpm"
#include "../icons/track_cart.xpm"
#include "../icons/notemarker.xpm"
#include "../icons/music.xpm"
#include "../icons/mic16.xpm"
#include "../icons/traffic.xpm"
RDLogIcons::RDLogIcons()
{
d_list_icons.push_back(QPixmap(greencheckmark_xpm));
d_list_icons.push_back(QPixmap(redx_xpm));
d_list_icons.push_back(QPixmap(greenball_xpm));
d_list_icons.push_back(QPixmap(redball_xpm));
d_list_icons.push_back(QPixmap(whiteball_xpm));
d_list_icons.push_back(QPixmap(blueball_xpm));
//
// Create Type Icons
//
log_type_icons[RDLogLine::Cart]=QPixmap(play_xpm);
log_type_icons[RDLogLine::Macro]=QPixmap(rml5_xpm);
log_type_icons[RDLogLine::Marker]=QPixmap(notemarker_xpm);
log_type_icons[RDLogLine::Chain]=QPixmap(chain_xpm);
log_type_icons[RDLogLine::Track]=QPixmap(mic16_xpm);
log_type_icons[RDLogLine::MusicLink]=QPixmap(music_xpm);
log_type_icons[RDLogLine::TrafficLink]=QPixmap(traffic_xpm);
log_track_cart_icon=QPixmap(track_cart_xpm);
}
QPixmap RDLogIcons::listIcon(RDLogIcons::IconType type) const
{
return d_list_icons.at(type);
}
QPixmap RDLogIcons::typeIcon(RDLogLine::Type type,RDLogLine::Source src) const
{
if((type==RDLogLine::Cart)&&(src==RDLogLine::Tracker)) {
return log_track_cart_icon;
}
return log_type_icons.value(type);
}