/* * This file is part of the KDE libraries * Copyright (c) 2001 Michael Goffioul * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License version 2 as published by the Free Software Foundation. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. **/ #ifndef UTIL_H #define UTIL_H #include "kprinter.h" #include #include #include KURL smbToUrl(const TQString& work, const TQString& server, const TQString& printer); void urlToSmb(const KURL& url, TQString& work, TQString& server, TQString& printer); // those 2 are only workarounds when the login/password may contain // strange characters ('@', '/'). In this case, those chars are not encoded // as other SMB tools (smbspool) doesn't seem to support encoding. This // utilities allow to continue working KURL class (and encoding) within // TDEPrint, but without encoding outside TDEPrint (should fix bug #38733) TDEPRINT_EXPORT TQString buildSmbURI( const TQString& work, const TQString& server, const TQString& printer, const TQString& user, const TQString& passwd ); TDEPRINT_EXPORT bool splitSmbURI( const TQString& uri, TQString& work, TQString& server, TQString& printer, TQString& user, TQString& passwd ); static const struct pagesizestruct { const char* text; int ID; } page_sizes[] = { { "A0", KPrinter::A0 }, { "A1", KPrinter::A1 }, { "A2", KPrinter::A2 }, { "A3", KPrinter::A3 }, { "A4", KPrinter::A4 }, { "A5", KPrinter::A5 }, { "A6", KPrinter::A6 }, { "A7", KPrinter::A7 }, { "A8", KPrinter::A8 }, { "A9", KPrinter::A9 }, { "B1", KPrinter::B1 }, { "B10", KPrinter::B10 }, { "B2", KPrinter::B2 }, { "B3", KPrinter::B3 }, { "B4", KPrinter::B4 }, { "B5", KPrinter::B5 }, { "B6", KPrinter::B6 }, { "B7", KPrinter::B7 }, { "B8", KPrinter::B8 }, { "B9", KPrinter::B9 }, { I18N_NOOP("Envelope C5"), KPrinter::C5E }, { I18N_NOOP("Envelope DL"), KPrinter::DLE }, { I18N_NOOP("Envelope US #10"), KPrinter::Comm10E }, { I18N_NOOP("Executive"), KPrinter::Executive }, { I18N_NOOP("Folio"), KPrinter::Folio }, { I18N_NOOP("Ledger"), KPrinter::Ledger }, { I18N_NOOP("Tabloid"), KPrinter::Tabloid }, { I18N_NOOP("US Legal"), KPrinter::Legal }, { I18N_NOOP("US Letter"), KPrinter::Letter } }; int findIndex(int ID); #endif