/*************************************************************************** * main.h * * mar. août 23 16:17:01 2016 * Copyright 2016 Unknown * ****************************************************************************/ /* * main.h * * Copyright (C) 2016 - Unknown * * 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, see . */ #ifndef __MAIN_H__ #define __MAIN_H__ #include #include #include std::string strtolower(const std::string& _data); #define TEST #ifdef TEST #define UI_FILE "src/histodexc.ui" #else #ifdef G_OS_WIN32 #define UI_FILE ui_file #else #define UI_FILE PACKAGE_DATA_DIR"/ui/histodexc.ui" #endif #endif #define TOP_WINDOW "main_window" #endif