kdeprint_management_module.cpp

00001 /*
00002  *  This file is part of the KDE libraries
00003  *  Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
00004  *  Copyright (C) 2004  Dominique Devriese <devriese@kde.org>
00005  *
00006  *  This library is free software; you can redistribute it and/or
00007  *  modify it under the terms of the GNU Library General Public
00008  *  License version 2 as published by the Free Software Foundation.
00009  *
00010  *  This library is distributed in the hope that it will be useful,
00011  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00012  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013  *  Library General Public License for more details.
00014  *
00015  *  You should have received a copy of the GNU Library General Public License
00016  *  along with this library; see the file COPYING.LIB.  If not, write to
00017  *  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
00018  *  Boston, MA 02110-1301, USA.
00019  **/
00020 
00021 #include "kxmlcommandselector.h"
00022 #include "kmconfigdialog.h"
00023 #include "kmwizard.h"
00024 #include "kmfactory.h"
00025 #include "kmmanager.h"
00026 #include "kmprinter.h"
00027 #include "kmmainview.h"
00028 
00029 #include <kmessagebox.h>
00030 #include <kdialogbase.h>
00031 #include <klocale.h>
00032 
00033 extern "C"
00034 {
00035     KDEPRINT_EXPORT int add_printer_wizard(QWidget *parent)
00036     {
00037                 return kdeprint_management_add_printer_wizard( parent );
00038     }
00039 
00040     KDEPRINT_EXPORT bool config_dialog(QWidget *parent)
00041     {
00042         KMConfigDialog  dlg(parent);
00043         return dlg.exec();
00044     }
00045 
00046     KDEPRINT_EXPORT QString select_command( QWidget* parent )
00047     {
00048         KDialogBase dlg( parent, 0, true, i18n( "Select Command" ), KDialogBase::Ok|KDialogBase::Cancel );
00049         KXmlCommandSelector *xmlSel = new KXmlCommandSelector( false, &dlg, "CommandSelector", &dlg );
00050         dlg.setMainWidget( xmlSel );
00051         if ( dlg.exec() )
00052             return xmlSel->command();
00053         return QString::null;
00054     }
00055 }
00056 
KDE Home | KDE Accessibility Home | Description of Access Keys