// **************************************************************************** // copyright (c) 2000-2005 Horst Knorr // This file is part of the hk_kdeclasses library. // This file may be distributed and/or modified under the terms of the // GNU Library Public License version 2 as published by the Free Software // Foundation and appearing in the file LGPL included in the // packaging of this file. // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. // **************************************************************************** // $Revision: 1.9 $ #include "hk_kdefinddialog.h" #include #include #include #include #include #include #include hk_kdefinddialog::hk_kdefinddialog( QWidget* parent, const char* name, bool modal, WFlags fl ) : hk_kdefinddialogbase( parent, name, modal, fl ) { part_of_columnbox->setChecked(true); part_of_columnbox->setText(i18n("&Part of column")); searchlabel->setText(i18n("Search")); optionsgroup->setTitle(i18n("Optionen")); case_sensitivebox->setText(i18n("C&ase sensitive")); all_columnsbox->setText(i18n("All c&olumns")); find_backwardsbox->setText(i18n("Find &backwards")); all_columnsbox->hide(); setCaption(i18n("Search Dialog")); ok_button->setText(i18n("&Ok")); cancel_button->setText(i18n("&Cancel")); searchfield->setFocus(); } hk_kdefinddialog::~hk_kdefinddialog() { // no need to delete child widgets, Qt does it all for us } void hk_kdefinddialog::find_slot() { emit signal_findbutton_clicked(); } void hk_kdefinddialog::new_findargument() { emit signal_findargument_changed(); }