~ubuntu-branches/debian/sid/kdesvn/sid

« back to all changes in this revision

Viewing changes to src/svnfrontend/subversion_settings.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2006-01-13 04:31:54 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060113043154-6drk4qesrslf3jhm
Tags: 0.7.2-1
* New upstream release.
  + Removed patch context_menu.diff, merged upstream.
* Added patch store_passwords_config.diff. Closes: #345518
* Added patch settings_icons.diff for more distinct icons in the settings
  dialog.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
/****************************************************************************
4
4
** Form implementation generated from reading ui file './subversion_settings.ui'
5
5
**
6
 
** Created: Fr Nov 25 20:06:40 2005
7
 
**      by: The User Interface Compiler ($Id: qt/main.cpp   3.3.4   edited Nov 24 2003 $)
 
6
** Created: Mi Jan 11 23:10:38 2006
 
7
**      by: The User Interface Compiler ($Id: qt/main.cpp   3.3.5   edited Aug 31 12:13 $)
8
8
**
9
9
** WARNING! All changes made in this file will be lost!
10
10
****************************************************************************/
17
17
#include <qlayout.h>
18
18
#include <qtooltip.h>
19
19
#include <qwhatsthis.h>
 
20
#include "knuminput.h"
20
21
 
21
22
/*
22
23
 *  Constructs a SubversionSettings as a child of 'parent', with the
35
36
    kcfg_start_updates_check_on_open = new QCheckBox( this, "kcfg_start_updates_check_on_open" );
36
37
    SubversionSettingsLayout->addWidget( kcfg_start_updates_check_on_open );
37
38
 
 
39
    kcfg_details_on_remote_listing = new QCheckBox( this, "kcfg_details_on_remote_listing" );
 
40
    SubversionSettingsLayout->addWidget( kcfg_details_on_remote_listing );
 
41
 
38
42
    kcfg_info_recursive = new QCheckBox( this, "kcfg_info_recursive" );
39
43
    SubversionSettingsLayout->addWidget( kcfg_info_recursive );
40
44
 
51
55
    kcfg_maximum_displayed_logs->setMinValue( 0 );
52
56
    SubversionSettingsLayout->addWidget( kcfg_maximum_displayed_logs );
53
57
    languageChange();
54
 
    resize( QSize(339, 229).expandedTo(minimumSizeHint()) );
 
58
    resize( QSize(345, 247).expandedTo(minimumSizeHint()) );
55
59
    clearWState( WState_Polished );
56
60
}
57
61
 
76
80
"If it works slow (low connection and so on) you should turn of this feature." ) );
77
81
    kcfg_start_updates_check_on_open->setText( tr2i18n( "Start check for updates when open a working copy" ) );
78
82
    QToolTip::add( kcfg_start_updates_check_on_open, tr2i18n( "Select if kdesvn should check for updates when open a working copy" ) );
 
83
    kcfg_details_on_remote_listing->setText( tr2i18n( "Get file details while remote listing" ) );
 
84
    QToolTip::add( kcfg_details_on_remote_listing, tr2i18n( "Whether getting details about items when making listing on repositories or not" ) );
 
85
    QWhatsThis::add( kcfg_details_on_remote_listing, tr2i18n( "<p align=\"left\">When checked, kdesvn get more detailed info about file items when making a listing to remote repositories. So you may see remot locks in overview.\n"
 
86
"</p>\n"
 
87
"<p align=\"left\"><i>Be care: This may let listings REAL slow!</i></p>" ) );
79
88
    kcfg_info_recursive->setText( tr2i18n( "Gain item info recursive" ) );
80
89
    kcfg_display_ignored_files->setText( tr2i18n( "Display ignored files" ) );
81
90
    kcfg_log_follows_nodes->setText( tr2i18n( "Log follows node changes" ) );