You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
2.0 KiB
52 lines
2.0 KiB
/* |
|
Copyright (C) 2009 George Kiagiadakis <gkiagia@users.sourceforge.net> |
|
|
|
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 <http://www.gnu.org/licenses/>. |
|
*/ |
|
#ifndef DRKONQI_GLOBALS_H |
|
#define DRKONQI_GLOBALS_H |
|
|
|
#include <KGuiItem> |
|
#include <QIcon> |
|
|
|
/** This class provides a custom constructor to fill the "toolTip" |
|
* and "whatsThis" texts of KGuiItem with the same text. |
|
*/ |
|
class KGuiItem2 : public KGuiItem |
|
{ |
|
public: |
|
inline KGuiItem2(const QString &text, const QIcon &icon, const QString &toolTip) |
|
: KGuiItem(text, icon, toolTip, toolTip) {} |
|
}; |
|
|
|
/* Urls are defined globally here, so that they can change easily */ |
|
#define KDE_BUGZILLA_URL "https://bugs.kde.org/" |
|
#define KDE_BUGZILLA_CREATE_ACCOUNT_URL KDE_BUGZILLA_URL "createaccount.cgi" |
|
#define KDE_BUGZILLA_SHORT_URL "bugs.kde.org" |
|
#define TECHBASE_HOWTO_DOC "https://community.kde.org/Guidelines_and_HOWTOs/Debugging/How_to_create_useful_crash_reports#Preparing_your_KDE_packages" |
|
|
|
/* IDs for bugreport assistant pages -> help anchors */ |
|
#define PAGE_INTRODUCTION_ID "IntroductionID" |
|
#define PAGE_CRASHINFORMATION_ID "BacktraceID" |
|
#define PAGE_AWARENESS_ID "AwarenessID" |
|
#define PAGE_CONCLUSIONS_ID "ConclusionsID" |
|
#define PAGE_BZLOGIN_ID "BugzillaLoginID" |
|
#define PAGE_BZDUPLICATES_ID "BugzillaDuplicatesID" |
|
#define PAGE_BZDETAILS_ID "BugzillaDetailsID" |
|
#define PAGE_BZPREVIEW_ID "BugzillaPreviewID" |
|
#define PAGE_BZSEND_ID "BugzillaSendID" |
|
|
|
#define PAGE_HELP_BEGIN_ID "Begin" |
|
|
|
#endif
|
|
|