2007-12-30 17:41:49 +01:00
|
|
|
/***************************************************************************
|
|
|
|
|
|
|
|
main.c
|
|
|
|
|
2013-08-03 17:38:01 +02:00
|
|
|
(c) 2000-2013 Benoît Minisini <gambas@users.sourceforge.net>
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
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
|
2009-08-17 12:41:51 +02:00
|
|
|
the Free Software Foundation; either version 2, or (at your option)
|
2007-12-30 17:41:49 +01:00
|
|
|
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
|
2011-06-03 02:51:09 +02:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
2011-12-31 03:39:20 +01:00
|
|
|
MA 02110-1301, USA.
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#define __MAIN_C
|
|
|
|
|
|
|
|
#include "main.h"
|
|
|
|
|
2013-12-29 16:17:40 +01:00
|
|
|
#define USE_NOTHING 0
|
|
|
|
#define USE_GB_QT4 1
|
|
|
|
#define USE_GB_GTK 2
|
|
|
|
#define USE_GB_GTK3 3
|
2013-11-01 14:18:47 +01:00
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
GB_INTERFACE GB EXPORT;
|
|
|
|
|
2013-05-04 19:23:17 +02:00
|
|
|
// Prevents gbi3 from complaining
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
GB_DESC *GB_CLASSES[] EXPORT =
|
|
|
|
{
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2009-07-17 03:29:39 +02:00
|
|
|
char *GB_INCLUDE EXPORT = "gb.qt4";
|
2007-12-30 17:41:49 +01:00
|
|
|
|
|
|
|
int EXPORT GB_INIT(void)
|
|
|
|
{
|
2013-11-01 14:18:47 +01:00
|
|
|
int use = USE_NOTHING;
|
2007-12-30 17:41:49 +01:00
|
|
|
char *env;
|
2013-11-01 14:18:47 +01:00
|
|
|
const char *comp;
|
|
|
|
const char *comp2;
|
|
|
|
|
2007-12-30 17:41:49 +01:00
|
|
|
env = getenv("GB_GUI");
|
|
|
|
if (env)
|
|
|
|
{
|
2013-11-01 14:18:47 +01:00
|
|
|
if (strcmp(env, "gb.qt4") == 0)
|
|
|
|
use = USE_GB_QT4;
|
|
|
|
else if (strcmp(env, "gb.gtk") == 0)
|
|
|
|
use = USE_GB_GTK;
|
2013-12-29 16:17:40 +01:00
|
|
|
else if (strcmp(env, "gb.gtk3") == 0)
|
|
|
|
use = USE_GB_GTK3;
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
2013-11-01 14:18:47 +01:00
|
|
|
if (use == USE_NOTHING)
|
2009-06-28 00:02:18 +02:00
|
|
|
{
|
2013-11-01 14:18:47 +01:00
|
|
|
use = USE_GB_GTK;
|
2012-05-06 23:09:42 +02:00
|
|
|
|
|
|
|
env = getenv("KDE_FULL_SESSION");
|
|
|
|
|
|
|
|
if (env && !strcmp(env, "true"))
|
|
|
|
{
|
|
|
|
env = getenv("KDE_SESSION_VERSION");
|
|
|
|
if (env && !strcmp(env, "4"))
|
2013-11-01 14:18:47 +01:00
|
|
|
use = USE_GB_QT4;
|
2012-05-06 23:09:42 +02:00
|
|
|
}
|
2009-06-28 00:02:18 +02:00
|
|
|
}
|
2013-11-01 14:18:47 +01:00
|
|
|
|
2013-12-29 16:17:40 +01:00
|
|
|
comp = use == USE_GB_QT4 ? "gb.qt4" : (use == USE_GB_GTK3 ? "gb.gtk3" : "gb.gtk");
|
2013-11-01 14:18:47 +01:00
|
|
|
|
2012-05-08 17:32:33 +02:00
|
|
|
if (GB.Component.Load(comp))
|
2013-11-01 14:18:47 +01:00
|
|
|
{
|
|
|
|
comp2 = use == USE_GB_QT4 ? "gb.gtk" : "gb.qt4";
|
|
|
|
|
|
|
|
if (GB.Component.Load(comp2))
|
|
|
|
{
|
|
|
|
fprintf(stderr, "gb.gui: error: unable to find any GUI component. Please install the 'gb.qt4' or 'gb.gtk' component\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "gb.gui: warning: '%s' component not found, using '%s' instead\n", comp, comp2);
|
|
|
|
comp = comp2;
|
|
|
|
}
|
2007-12-30 17:41:49 +01:00
|
|
|
|
2013-11-01 14:18:47 +01:00
|
|
|
setenv("GB_GUI", comp, TRUE);
|
|
|
|
|
2010-01-10 14:40:48 +01:00
|
|
|
return 0;
|
2007-12-30 17:41:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void EXPORT GB_EXIT()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|