X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fglobal.h;h=396336750d319471afbda532c1352bb219a3d591;hb=3ed7d3bb6e9123ff0aa77023b264a39d1f63bd90;hp=da531859391baab7f5d1c893dd9edc67acc3790a;hpb=d1f2e1324046ad4108d30434c92fc0a2d688ef09;p=quassel.git diff --git a/src/common/global.h b/src/common/global.h index da531859..39633675 100644 --- a/src/common/global.h +++ b/src/common/global.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,21 +23,37 @@ #ifndef _GLOBAL_H_ #define _GLOBAL_H_ +#include + // Enable some shortcuts and stuff //#define DEVELMODE +/* Some global stuff */ -/** The protocol version we use fo the communication between core and GUI */ -#define GUI_PROTOCOL 3 +namespace Global { -//#define DEFAULT_PORT 4242 + extern QString quasselVersion; + extern QString quasselDate; + extern uint quasselBuild; -/* Some global stuff */ + //! Minimum client build number the core needs + extern uint clientBuildNeeded; + extern QString clientVersionNeeded; + + //! Minimum core build number the client needs + extern uint coreBuildNeeded; + extern QString coreVersionNeeded; + + // We need different config (QSettings) files for client and gui, since the core cannot work with GUI types + // Set these here. They're used in ClientSettings and CoreSettings. + const QString coreApplicationName = "Quassel Core"; + const QString clientApplicationName = "Quassel Client"; -namespace Global { enum RunMode { Monolithic, ClientOnly, CoreOnly }; extern RunMode runMode; extern unsigned int defaultPort; -} + + void registerMetaTypes(); +}; #endif