spek/src/spek-artwork.hh
Alexander Kojevnikov a318529ecd Set window icon
2012-09-03 20:24:37 -07:00

35 lines
1.0 KiB
C++

/* spek-artwork.hh
*
* Copyright (C) 2012 Alexander Kojevnikov <alexander@kojevnikov.com>
*
* Spek 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 3 of the License, or
* (at your option) any later version.
*
* Spek 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 Spek. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SPEK_ARTWORK_HH_
#define SPEK_ARTWORK_HH_
#include <wx/string.h>
#define ART_HAS_ICON_BUNDLES wxCHECK_VERSION(2, 9, 0)
#define ART_SPEK wxT("art-spek")
#define ART_OPEN wxT("art-open")
#define ART_SAVE wxT("art-save")
#define ART_ABOUT wxT("art-about")
#define ART_CLOSE wxT("art-close")
void spek_artwork_init();
#endif