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.
78 lines
2.4 KiB
78 lines
2.4 KiB
/* ui.h
|
|
**
|
|
** Copyright (C) 2000,2001 by Bernhard Rosenkraenzer
|
|
**
|
|
** Contributions by M. Laurent and W. Bastian.
|
|
**
|
|
*/
|
|
|
|
/*
|
|
** 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 in a file called COPYING; if not, write to
|
|
** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
** MA 02110-1301, USA.
|
|
*/
|
|
|
|
/*
|
|
** Bug reports and questions can be sent to kde-devel@kde.org
|
|
*/
|
|
/* UI definitions... Coding these things twice (with and without KDE)
|
|
* wouldn't make sense... */
|
|
|
|
#ifndef _UI_H
|
|
#define _UI_H
|
|
|
|
#ifdef USE_KDE
|
|
#include <tdemessagebox.h>
|
|
#include <tdelocale.h>
|
|
#include <ktabctl.h>
|
|
#include <kdialog.h>
|
|
#include <tdefiledialog.h>
|
|
#define _(x) i18n(x)
|
|
#define WarningYesNo(parent, caption, text) \
|
|
KMessageBox::warningYesNo(parent, text, caption)
|
|
#define ErrorOK(parent, caption, text) \
|
|
KMessageBox::sorry(parent, text, caption)
|
|
#define InformationOK(parent, text, caption, dontShowAgainName) \
|
|
KMessageBox::information(parent, text, caption, dontShowAgainName)
|
|
#define CriticalErrorOK(parent, text, caption) \
|
|
KMessageBox::error(parent, text, caption)
|
|
#define TabBar KTabCtl
|
|
#define FileDlg KFileDialog
|
|
#define SPACE_MARGIN KDialog::marginHint()
|
|
#define SPACE_INSIDE KDialog::spacingHint()
|
|
#else
|
|
#include <tqmessagebox.h>
|
|
#include <tqtabwidget.h>
|
|
#include <tqdialog.h>
|
|
#include <tqfiledialog.h>
|
|
#define _(x) tr(x)
|
|
#define WarningYesNo(parent, caption, text) \
|
|
TQMessageBox::warning(parent, caption, text, TQMessageBox::Yes, TQMessageBox::No)
|
|
#define ErrorOK(parent, caption, text) \
|
|
TQMessageBox::information(parent, caption, text)
|
|
#define InformationOK(parent, text, caption, dontShowAgainName) \
|
|
TQMessageBox::information(parent, caption, text)
|
|
#define CriticalErrorOK(parent, text, caption) \
|
|
TQMessageBox::critical(parent, caption, text)
|
|
#define TabBar TQTabWidget
|
|
#define FileDlg TQFileDialog
|
|
#define SPACE_MARGIN 5
|
|
#define SPACE_INSIDE 5
|
|
#endif
|
|
#define IDYES 3
|
|
#define IDNO 4
|
|
|
|
#endif
|
|
|