* Apps/EOModelEditor/Inspectors/*.gsmarkup

trying to fix offsets on X11
* Apps/EOModeler/EOModelExtensions.m
  remove config.h include as suggested by David Ayers



git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@30563 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Dave Wetzel 2010-06-03 18:49:35 +00:00
parent 272ff9fd66
commit 86ddea2fa3
11 changed files with 20 additions and 24 deletions

View file

@ -3,7 +3,7 @@
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<vbox height="387">
<box title="Options" topPadding="10" leftPadding="4" rightPadding="4" width="260">
<grid>
<gridRow>

View file

@ -3,7 +3,7 @@
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" height="405" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<vbox height="387">
<box topPadding="0" bottomPadding="3" leftPadding="4" rightPadding="4" width="260">
<grid>
<gridRow>

View file

@ -168,7 +168,7 @@
if (sender == batchFaultingSizeText) {
int iValue = [sender intValue];
[_currentEntity setMaxNumberOfInstancesToBatchFetch:(iValue > 0) ? iValue:1];
[_currentEntity setMaxNumberOfInstancesToBatchFetch:(iValue >= 0) ? iValue:0];
return;
}
if (sender == externalQueryText) {

View file

@ -3,8 +3,8 @@
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<box title="Batch Faulting" topPadding="10" leftPadding="4" rightPadding="4" width="260">
<vbox height="387">
<box title="Batch Faulting" topPadding="0" leftPadding="4" rightPadding="4" width="260">
<grid>
<gridRow>
<label halign="right" selectable="no">Batch Size:</label>

View file

@ -3,7 +3,7 @@
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<vbox height="387">
<splitView vertical="no" autosaveName="verticalsplit">
<vbox>

View file

@ -2,9 +2,9 @@
<!DOCTYPE gsmarkup>
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" height="405" resizable="no" autosaveName="Inspector" visible="no">
<window id="window" title="Inspector" width="268.0" xheight="405" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<box title="Names" topPadding="10" leftPadding="4" rightPadding="4" width="260">
<box title="Names" topPadding="58" leftPadding="4" rightPadding="4" width="260">
<grid>
<gridRow>
<label halign="right" selectable="no">Name:</label>
@ -20,7 +20,7 @@
</gridRow>
</grid>
</box>
<box title="Properties" topPadding="10" leftPadding="4" rightPadding="4" height="250" width="260">
<box title="Properties" leftPadding="4" rightPadding="4" height="250" width="260">
<label font="small" halign="center" selectable="no">Not in this version</label>
</box>

View file

@ -3,8 +3,8 @@
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" height="405" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<box topPadding="4" bottomPadding="200" leftPadding="4" rightPadding="4" width="260">
<vbox height="387">
<box topPadding="0" bottomPadding="200" leftPadding="4" rightPadding="4" width="260">
<grid>
<gridRow>
<label halign="right" selectable="no">Insert:</label>

View file

@ -3,10 +3,10 @@
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" height="405" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<vbox height="387">
<grid>
<gridRow>
<hbox leftPadding="4" rightPadding="4" topPadding="4">
<hbox leftPadding="4" rightPadding="4" topPadding="0">
<label halign="right" selectable="no">Name:</label> <textField id="name_textField" delegate="#NSOwner"></textField>
</hbox>
</gridRow>

View file

@ -2,8 +2,8 @@
<!DOCTYPE gsmarkup>
<gsmarkup>
<objects>
<window id="window" title="Inspector" width="268.0" height="405" resizable="no" autosaveName="Inspector" visible="no">
<vbox>
<window id="window" title="Inspector" width="268.0" resizable="no" autosaveName="Inspector" visible="no">
<vbox height="387">
<splitView vertical="no" autosaveName="verticalsplit">
<vbox>

View file

@ -24,8 +24,6 @@
51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "../../config.h"
#ifndef GNUSTEP
#include <GNUstepBase/GNUstep.h>
#endif

View file

@ -1,11 +1,9 @@
2010-06-03 David Wetzel <dave@turbocat.de>
* EOControl/EOEditingContext.m
* EOControl/EOMultiReaderLock.m
* EOControl/EODetailDataSource.m
fix warnings
* EOControl/EOCustomObject.m
validateValue:forKey:error: -- add reason in NSLocalizedDescriptionKey
fix warnings
* Apps/EOModelEditor/Inspectors/*.gsmarkup
trying to fix offsets on X11
* Apps/EOModeler/EOModelExtensions.m
remove config.h include as suggested by David Ayers
2010-06-03 David Wetzel <dave@turbocat.de>
* EOAccess/EOModel.m