[MSEide-MSEgui-talk] FreePascal.Ru: how to implement tagless tab pages ?

2014-03-20 Thread Ivanko B
See the attached application (production automatic) for an instance :

https://cloud.mail.ru/public/137b16408426/vnitep.

where tab pages are switched by external buttons.
BTW, this is the application to be ARM11 DEBIAN6+ (Raspberry PI)
compiled :) Is it possible to build one with MSEgui in an easy manner
?

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] FreePascal.Ru: how to implement tagless tab pages ?

2014-03-20 Thread Martin Schreiber
On Thursday 20 March 2014 12:22:17 Ivanko B wrote:
 See the attached application (production automatic) for an instance :

 https://cloud.mail.ru/public/137b16408426/vnitep.

 where tab pages are switched by external buttons.
 BTW, this is the application to be ARM11 DEBIAN6+ (Raspberry PI)
 compiled :) Is it possible to build one with MSEgui in an easy manner
 ?

Most convenient probably is to add a tab_visible property (added to wishlist).
Another possibility is to switch of tab autosizing and to set tab size to 0.

Martin

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread misu kun
Hi Martin
when i press the dot in the keyboard keypad  it displayed comma !!
this happen in the source editor and editable widgets .

any way to change this behave ?


thanks

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] FreePascal.Ru: how to implement tagless tab pages ?

2014-03-20 Thread Ivanko B
Another possibility is to switch off tab autosizing
=
Where to find this option ?

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread Ivanko B
A system locale (decimal vs thousands separator) issue ?

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread Martin Schreiber
On Thursday 20 March 2014 13:49:31 misu kun wrote:
 Hi Martin
 when i press the dot in the keyboard keypad  it displayed comma !!
 this happen in the source editor and editable widgets .

 any way to change this behave ?

Dot in num pad AFAIK returns the value of 
defaultformatsettingsmse.decimalseparator value. I assume your locale sets it 
to ','. The defaultformatsettingsmse variable is in unit mseformatstr if you 
like to change the locale provided value.

Martin

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread misu kun
i checked the mseformatstr unit , the DecimalSeparator is sets already to '.'

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread Martin Schreiber
On Thursday 20 March 2014 14:46:33 misu kun wrote:
 i checked the mseformatstr unit , the DecimalSeparator is sets already to
 '.'

At runtime too? Locale setting depends on environment. What operating system? 
It works for me as expected.

Martin

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] FreePascal.Ru: how to implement tagless tab pages ?

2014-03-20 Thread Martin Schreiber
On Thursday 20 March 2014 14:25:51 Martin Schreiber wrote:
 On Thursday 20 March 2014 13:50:23 Ivanko B wrote:
  Another possibility is to switch off tab autosizing
  =
  Where to find this option ?

 tab_optionswidget1 ow1_autoheight/ow1_autowidth. It seems that it currently
 does not allow to shrink to zero because of the font height, I'll have a
 look.

The problem was the streaming order of tab_size and tab_sizemin, fixed in git 
master 64d2d7a787e53f9e6356270f565e1779c881f9dc.

Martin

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] FreePascal.Ru: how to implement tagless tab pages ?

2014-03-20 Thread Martin Schreiber
On Thursday 20 March 2014 13:38:46 Martin Schreiber wrote:
 On Thursday 20 March 2014 12:22:17 Ivanko B wrote:
  See the attached application (production automatic) for an instance :
 
  https://cloud.mail.ru/public/137b16408426/vnitep.
 
  where tab pages are switched by external buttons.
  BTW, this is the application to be ARM11 DEBIAN6+ (Raspberry PI)
  compiled :) Is it possible to build one with MSEgui in an easy manner
  ?

 Most convenient probably is to add a tab_visible property (added to
 wishlist).

Git master 64d2d7a787e53f9e6356270f565e1779c881f9dc has tab_options 
tabo_notabs. Active on runtime only.

Martin

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread misu kun
windows7 32 bits french
the dot displayed only if i press shift+semicolon  , but in the num
pad it is comma

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] FreePascal.Ru: how to implement tagless tab pages ?

2014-03-20 Thread Ivanko B
Active on runtime only.
==
Why ? It'll disturb WIYSIWYG widget placement
(hidden tabs can be selected via ObjInsp)

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread misu kun
2014-03-20 17:47 UTC+01:00, Ivanko B ivankob4m...@gmail.com:
 Just try swapping decimal  thousands separators in regional settings
 of Your OS.

thanks Ivanko , it works , the Decimal symbol in regional settings was
',' i change it to '.'

but the dot in the num pad was working in other editors befor i made
this change .

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] comma instead of dot in keyboard keypad

2014-03-20 Thread Martin Schreiber
On Thursday 20 March 2014 17:54:49 misu kun wrote:
 2014-03-20 17:47 UTC+01:00, Ivanko B ivankob4m...@gmail.com:
  Just try swapping decimal  thousands separators in regional settings
  of Your OS.

 thanks Ivanko , it works , the Decimal symbol in regional settings was
 ',' i change it to '.'

 but the dot in the num pad was working in other editors befor i made
 this change .

The purpose why numpad decimalsep key returns the decimalseparator of the 
current locale is that this character must be entered in real or currency 
values. Otherwise the numpad can not be used to enter real or currency values 
in countries where the decimalseparator is ',' (Russia and Germany for 
example).

Martin

--
Learn Graph Databases - Download FREE O'Reilly Book
Graph Databases is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk