mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-30 17:23:53 +01:00 
			
		
		
		
	* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
		
			
				
	
	
		
			97 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| // colors.h
 | |
| //
 | |
| // The color definitions for RDAirPlay.
 | |
| //
 | |
| //   (C) Copyright 2002-2004,2016 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 COLORS_H
 | |
| #define COLORS_H
 | |
| 
 | |
| //
 | |
| // Mode Titles
 | |
| //
 | |
| #define STOP_MODE_TITLE QObject::tr("START")
 | |
| #define PLAY0_MODE_TITLE QObject::tr("STOP")
 | |
| #define PLAY1_MODE_TITLE QObject::tr("PAUSE")
 | |
| #define PAUSE_MODE_TITLE QObject::tr("RESUME")
 | |
| #define ADD_TO_MODE_TITLE QObject::tr("WHERE?")
 | |
| #define DELETE_FROM_MODE_TITLE QObject::tr("DELETE?")
 | |
| #define MOVE_FROM_MODE_TITLE QObject::tr("MOVE?")
 | |
| #define MOVE_TO_MODE_TITLE QObject::tr("TO?")
 | |
| #define COPY_FROM_MODE_TITLE QObject::tr("COPY?")
 | |
| #define COPY_TO_MODE_TITLE QObject::tr("TO?")
 | |
| #define DISABLED_MODE_TITLE ""
 | |
| #define ERROR_MODE_TITLE QObject::tr("ERROR")
 | |
| 
 | |
| //
 | |
| // Wall Clock
 | |
| //
 | |
| #define BUTTON_TIME_SYNC_LOST_COLOR red
 | |
| 
 | |
| //
 | |
| // Mode Button
 | |
| //
 | |
| #define BUTTON_MODE_LIVE_ASSIST_COLOR yellow
 | |
| #define BUTTON_MODE_AUTO_COLOR green
 | |
| #define BUTTON_MODE_MANUAL_COLOR red
 | |
| 
 | |
| //
 | |
| // Log Selector Buttons
 | |
| //
 | |
| #define BUTTON_LOG_ACTIVE_TEXT_COLOR white
 | |
| #define BUTTON_LOG_ACTIVE_BACKGROUND_COLOR blue
 | |
| 
 | |
| //
 | |
| // Full Log Colors
 | |
| //
 | |
| #define LOG_NEXT_COLOR "#CCFFCC"
 | |
| #define LOG_EVERGREEN_COLOR "#008000"
 | |
| 
 | |
| //
 | |
| // Pie Counter Color
 | |
| //
 | |
| #define PIE_COUNTER_COLOR darkGreen
 | |
| #define PIE_TALK_COLOR blue
 | |
| #define PIE_FINAL_COLOR black
 | |
| #define PIE_FINAL_BG_COLOR white
 | |
| #define PIE_ONAIR_COLOR red
 | |
| 
 | |
| //
 | |
| // Widget Colors
 | |
| //
 | |
| #define AIR_FLASH_COLOR blue
 | |
| #define AIR_ERROR_COLOR red
 | |
| 
 | |
| //
 | |
| // LogLineBox Colors
 | |
| //
 | |
| #define LOGLINEBOX_BACKGROUND_COLOR white
 | |
| #define LOGLINEBOX_MISSING_COLOR red
 | |
| #define LOGLINEBOX_MARKER_COLOR cyan
 | |
| #define LOGLINEBOX_CHAIN_COLOR magenta
 | |
| #define LOGLINEBOX_EVERGREEN_COLOR "#008000"
 | |
| #define LOGLINEBOX_TIMESCALE_COLOR green
 | |
| 
 | |
| //
 | |
| // Post Point Widget
 | |
| //
 | |
| #define POSTPOINT_EARLY_COLOR yellow
 | |
| #define POSTPOINT_ONTIME_COLOR green
 | |
| #define POSTPOINT_LATE_COLOR red
 | |
| 
 | |
| #endif  // COLORS_H
 |