[rkward-cvs] rkward/rkward/settings rksettingsmoduleobjectbrowser.cpp,1.4,1.5 rksettingsmoduleoutput.cpp,1.4,1.5 rksettingsmodulephp.cpp,1.7,1.8 rksettingsmoduleplugins.cpp,1.11,1.12 rksettingsmoduler.cpp,1.11,1.12

Thomas Friedrichsmeier tfry at users.sourceforge.net
Mon Oct 24 19:39:45 UTC 2005


Update of /cvsroot/rkward/rkward/rkward/settings
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24482/rkward/settings

Modified Files:
	rksettingsmoduleobjectbrowser.cpp rksettingsmoduleoutput.cpp 
	rksettingsmodulephp.cpp rksettingsmoduleplugins.cpp 
	rksettingsmoduler.cpp 
Log Message:
Add stretch at the bottom of settings-module GUIs

Index: rksettingsmoduleobjectbrowser.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/settings/rksettingsmoduleobjectbrowser.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** rksettingsmoduleobjectbrowser.cpp	2 Oct 2005 13:29:44 -0000	1.4
--- rksettingsmoduleobjectbrowser.cpp	24 Oct 2005 19:39:43 -0000	1.5
***************
*** 42,46 ****
  	layout->addWidget (show_hidden_vars_box);
  
! 	layout->addStretch ();
  
  	QLabel *label = new QLabel (i18n ("Which columns should be shown?"), this);
--- 42,46 ----
  	layout->addWidget (show_hidden_vars_box);
  
! 	layout->addSpacing (2*RKGlobals::spacingHint ());
  
  	QLabel *label = new QLabel (i18n ("Which columns should be shown?"), this);
***************
*** 61,64 ****
--- 61,66 ----
  	connect (show_class_field_box, SIGNAL (stateChanged (int)), this, SLOT (boxChanged (int)));
  	layout->addWidget (show_class_field_box);
+ 
+ 	layout->addStretch ();
  }
  

Index: rksettingsmoduler.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/settings/rksettingsmoduler.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** rksettingsmoduler.cpp	12 Oct 2005 17:03:48 -0000	1.11
--- rksettingsmoduler.cpp	24 Oct 2005 19:39:43 -0000	1.12
***************
*** 54,61 ****
  	QVBoxLayout *main_vbox = new QVBoxLayout (this, RKGlobals::marginHint ());
  
! /*	QLabel *label = new QLabel (i18n ("Note: Settings marked with (*) will not take effect until you restart RKWard!"), this);
! 	label->setAlignment (Qt::AlignAuto | Qt::AlignVCenter | Qt::ExpandTabs | Qt::WordBreak);
! 	main_vbox->addWidget (label); */
! 	main_vbox->addStretch ();
  
  	repository_selector = new MultiStringSelector (i18n ("Package repositories"), this);
--- 54,58 ----
  	QVBoxLayout *main_vbox = new QVBoxLayout (this, RKGlobals::marginHint ());
  
! 	main_vbox->addSpacing (2*RKGlobals::spacingHint ());
  
  	repository_selector = new MultiStringSelector (i18n ("Package repositories"), this);

Index: rksettingsmoduleoutput.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/settings/rksettingsmoduleoutput.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** rksettingsmoduleoutput.cpp	2 Oct 2005 13:29:44 -0000	1.4
--- rksettingsmoduleoutput.cpp	24 Oct 2005 19:39:43 -0000	1.5
***************
*** 46,50 ****
  	connect (auto_raise_box, SIGNAL (stateChanged (int)), this, SLOT (boxChanged (int)));
  
! 	main_vbox->addWidget (group);	
  }
  
--- 46,52 ----
  	connect (auto_raise_box, SIGNAL (stateChanged (int)), this, SLOT (boxChanged (int)));
  
! 	main_vbox->addWidget (group);
! 
! 	main_vbox->addStretch ();
  }
  

Index: rksettingsmodulephp.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/settings/rksettingsmodulephp.cpp,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** rksettingsmodulephp.cpp	2 Oct 2005 13:29:44 -0000	1.7
--- rksettingsmodulephp.cpp	24 Oct 2005 19:39:43 -0000	1.8
***************
*** 41,45 ****
  	main_vbox->addWidget (label);
  	
! 	main_vbox->addStretch ();
  	
  	bin_choser = new GetFileNameWidget (this, GetFileNameWidget::ExistingFile, i18n ("File-location of the PHP binary"), QString::null, php_bin);
--- 41,45 ----
  	main_vbox->addWidget (label);
  	
! 	main_vbox->addSpacing (2*RKGlobals::spacingHint ());
  	
  	bin_choser = new GetFileNameWidget (this, GetFileNameWidget::ExistingFile, i18n ("File-location of the PHP binary"), QString::null, php_bin);
***************
*** 47,55 ****
  	main_vbox->addWidget (bin_choser);
  
! 	main_vbox->addStretch ();
  
  	files_choser = new GetFileNameWidget (this, GetFileNameWidget::ExistingDirectory, i18n ("Directory, where the PHP support files are located"), QString::null, files_path);
  	connect (files_choser, SIGNAL (locationChanged ()), this, SLOT (pathChanged ()));
  	main_vbox->addWidget (files_choser);
  }
  
--- 47,57 ----
  	main_vbox->addWidget (bin_choser);
  
! 	main_vbox->addSpacing (2*RKGlobals::spacingHint ());
  
  	files_choser = new GetFileNameWidget (this, GetFileNameWidget::ExistingDirectory, i18n ("Directory, where the PHP support files are located"), QString::null, files_path);
  	connect (files_choser, SIGNAL (locationChanged ()), this, SLOT (pathChanged ()));
  	main_vbox->addWidget (files_choser);
+ 
+ 	main_vbox->addStretch ();
  }
  

Index: rksettingsmoduleplugins.cpp
===================================================================
RCS file: /cvsroot/rkward/rkward/rkward/settings/rksettingsmoduleplugins.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** rksettingsmoduleplugins.cpp	29 Sep 2005 16:02:51 -0000	1.11
--- rksettingsmoduleplugins.cpp	24 Oct 2005 19:39:43 -0000	1.12
***************
*** 39,43 ****
  	QVBoxLayout *main_vbox = new QVBoxLayout (this, RKGlobals::marginHint ());
  	
! 	main_vbox->addStretch ();
  	
  	QLabel *label = new QLabel (i18n ("Some plugins are available with both, a wizard-like interface and a traditional dialog interface. If both are available, which mode of presentation do you prefer?"), this);
--- 39,43 ----
  	QVBoxLayout *main_vbox = new QVBoxLayout (this, RKGlobals::marginHint ());
  	
! 	main_vbox->addSpacing (2*RKGlobals::spacingHint ());
  	
  	QLabel *label = new QLabel (i18n ("Some plugins are available with both, a wizard-like interface and a traditional dialog interface. If both are available, which mode of presentation do you prefer?"), this);
***************
*** 57,61 ****
  	main_vbox->addWidget (button_group);
  	
! 	main_vbox->addStretch ();
  	
  	map_choser = new MultiStringSelector (i18n ("Select .pluginmap file(s)"), this);
--- 57,61 ----
  	main_vbox->addWidget (button_group);
  	
! 	main_vbox->addSpacing (2*RKGlobals::spacingHint ());
  	
  	map_choser = new MultiStringSelector (i18n ("Select .pluginmap file(s)"), this);
***************
*** 64,67 ****
--- 64,69 ----
  	connect (map_choser, SIGNAL (listChanged ()), this, SLOT (pathsChanged ()));
  	main_vbox->addWidget (map_choser);
+ 
+ 	main_vbox->addStretch ();
  }
  





More information about the rkward-tracker mailing list