|
|
|
@ -47,7 +47,7 @@ KCMBeagleIndexing::KCMBeagleIndexing(TQWidget *parent, const char * )
|
|
|
|
|
TQGroupBox* gb_general = new TQGroupBox(0, Qt::Vertical, i18n("General"), this);
|
|
|
|
|
top_layout->addWidget(gb_general);
|
|
|
|
|
gb_general->setFlat(true);
|
|
|
|
|
TQVBoxLayout* gb_general_layout = new TQVBoxLayout( gb_general->tqlayout(), KDialog::spacingHint() );
|
|
|
|
|
TQVBoxLayout* gb_general_layout = new TQVBoxLayout( gb_general->layout(), KDialog::spacingHint() );
|
|
|
|
|
|
|
|
|
|
startBeagle = new TQCheckBox(i18n("Start Beagle indexing service automatically"), gb_general);
|
|
|
|
|
gb_general_layout->addWidget( startBeagle);
|
|
|
|
@ -59,7 +59,7 @@ KCMBeagleIndexing::KCMBeagleIndexing(TQWidget *parent, const char * )
|
|
|
|
|
TQGroupBox* gb_index = new TQGroupBox(0, Qt::Vertical, i18n("Index"), this);
|
|
|
|
|
top_layout->addWidget(gb_index);
|
|
|
|
|
gb_index->setFlat(true);
|
|
|
|
|
TQVBoxLayout* gb_index_layout = new TQVBoxLayout( gb_index->tqlayout(), KDialog::spacingHint() );
|
|
|
|
|
TQVBoxLayout* gb_index_layout = new TQVBoxLayout( gb_index->layout(), KDialog::spacingHint() );
|
|
|
|
|
|
|
|
|
|
TQHBoxLayout* qh_index = new TQHBoxLayout(gb_index_layout);
|
|
|
|
|
indexHome = new TQCheckBox(i18n("Index my home folder"), gb_index);
|
|
|
|
@ -96,7 +96,7 @@ KCMBeagleIndexing::KCMBeagleIndexing(TQWidget *parent, const char * )
|
|
|
|
|
TQGroupBox* gb_privacy = new TQGroupBox(0, Qt::Vertical, i18n("Privacy"), this);
|
|
|
|
|
top_layout->addWidget(gb_privacy);
|
|
|
|
|
gb_privacy->setFlat(true);
|
|
|
|
|
TQVBoxLayout* gb_privacy_layout = new TQVBoxLayout( gb_privacy->tqlayout(), KDialog::spacingHint() );
|
|
|
|
|
TQVBoxLayout* gb_privacy_layout = new TQVBoxLayout( gb_privacy->layout(), KDialog::spacingHint() );
|
|
|
|
|
|
|
|
|
|
TQLabel* label_privacy = new TQLabel(i18n( "Specify any resource, such as folder or pattern, you wish to exclude from indexing." ), gb_privacy);
|
|
|
|
|
gb_privacy_layout->addWidget(label_privacy);
|
|
|
|
|