A modern Music Player Daemon based on Rockbox open source high quality audio player
libadwaita audio rust zig deno mpris rockbox mpd
at master 63 lines 2.1 kB view raw
1/*************************************************************************** 2 * __________ __ ___. 3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___ 4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / 5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < 6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ 7 * \/ \/ \/ \/ \/ 8 * $Id$ 9 * 10 * Copyright (C) 2010 Robert Bieber 11 * 12 * This program is free software; you can redistribute it and/or 13 * modify it under the terms of the GNU General Public License 14 * as published by the Free Software Foundation; either version 2 15 * of the License, or (at your option) any later version. 16 * 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18 * KIND, either express or implied. 19 * 20 ****************************************************************************/ 21 22#include "rbrenderinfo.h" 23 24RBRenderInfo::RBRenderInfo(ParseTreeModel* model, ProjectModel* project, 25 SkinDocument* doc, QMap<QString, QString>* settings, 26 DeviceState* device, RBScreen* screen) 27 :mProject(project), mDoc(doc), 28 mSettings(settings), 29 mDevice(device), mScreen(screen), 30 mModel(model) 31{ 32} 33 34RBRenderInfo::RBRenderInfo() 35 : mProject(0), mSettings(0), mDevice(0), mScreen(0), mModel(0) 36{ 37} 38 39RBRenderInfo::RBRenderInfo(const RBRenderInfo &other) 40{ 41 mProject = other.mProject; 42 mSettings = other.mSettings; 43 mDevice = other.mDevice; 44 mDoc = other.mDoc; 45 mScreen = other.mScreen; 46 mModel = other.mModel; 47} 48 49const RBRenderInfo& RBRenderInfo::operator=(const RBRenderInfo& other) 50{ 51 mProject = other.mProject; 52 mSettings = other.mSettings; 53 mDevice = other.mDevice; 54 mDoc = other.mDoc; 55 mScreen = other.mScreen; 56 mModel = other.mModel; 57 58 return *this; 59} 60 61RBRenderInfo::~RBRenderInfo() 62{ 63}