tdeprint_management_module.cpp
00001 /* 00002 * This file is part of the KDE libraries 00003 * Copyright (c) 2001 Michael Goffioul <tdeprint@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 <tdemessagebox.h> 00030 #include <kdialogbase.h> 00031 #include <tdelocale.h> 00032 00033 extern "C" 00034 { 00035 TDEPRINT_EXPORT int add_printer_wizard(TQWidget *parent) 00036 { 00037 return tdeprint_management_add_printer_wizard( parent ); 00038 } 00039 00040 TDEPRINT_EXPORT bool config_dialog(TQWidget *parent) 00041 { 00042 KMConfigDialog dlg(parent); 00043 return dlg.exec(); 00044 } 00045 00046 TDEPRINT_EXPORT TQString select_command( TQWidget* 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 TQString::null; 00054 } 00055 } 00056