/* * Copyright © 2009-2010 freedcpp, http://code.google.com/p/freedcpp * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * In addition, as a special exception, compiling, linking, and/or * using OpenSSL with this program is allowed. */ #pragma once class Sound { public: enum TypeSound { DOWNLOAD_BEGINS, DOWNLOAD_FINISHED, DOWNLOAD_FINISHED_USER_LIST, UPLOAD_FINISHED, PRIVATE_MESSAGE, HUB_CONNECT, HUB_DISCONNECT, FAVORITE_USER_JOIN, FAVORITE_USER_QUIT, NONE }; static Sound* get(); static void start(); static void stop(); Sound() { sound_init(); } ~Sound() { sound_finalize(); } void playSound(TypeSound sound); void playSound(const std::string &target); private: static Sound *pSound; void sound_init(); void sound_finalize(); };