[MSEide-MSEgui-talk] Skin center

2015-02-10 Thread Alexandre Minoshi
Hello! I start develop real time skin support for mse programs. Test version here http://almin-soft.ru/data/files/tmp/skins.tar.bz2 It`s all only prealfa version. For test how it`s work: start one or some copies of test3 binary. start alscX try to change skin in dropdown. For create new skin:

Re: [MSEide-MSEgui-talk] Skin center

2015-02-10 Thread Martin Schreiber
On Tuesday 10 February 2015 10:43:02 Alexandre Minoshi wrote: > Hello! > > I start develop real time skin support for mse programs. > > Test version here http://almin-soft.ru/data/files/tmp/skins.tar.bz2 > Nice! :-) What is missing is a tool in order to produce the eight imagelist items for tcusto

Re: [MSEide-MSEgui-talk] Skin center

2015-02-10 Thread Alexandre Minoshi
H-m-m, Martin. At now I working with ttabwidget: I found how to set tab_frame: (formcomp as ttabwidget).tab_frame.createbuttonframe; (formcomp as ttabwidget).tab_frame.template := (comp as tframecomp); But how set tab_face? (formcomp as ttabwidget).tab_frame.createbuttonframe; identifier ident

Re: [MSEide-MSEgui-talk] Skin center

2015-02-10 Thread Alexandre Minoshi
H-m-m, Martin. At now I working with ttabwidget: I found how to set tab_frame: (formcomp as ttabwidget).tab_frame.createbuttonframe; (formcomp as ttabwidget).tab_frame.template := (comp as tframecomp); But how set tab_face? (formcomp as ttabwidget).tab_face.createbuttonface; gives identifier i

Re: [MSEide-MSEgui-talk] Skin center

2015-02-10 Thread Martin Schreiber
On Wednesday 11 February 2015 07:15:02 Alexandre Minoshi wrote: > H-m-m, Martin. > > At now I working with ttabwidget: > > I found how to set tab_frame: > > (formcomp as ttabwidget).tab_frame.createbuttonframe; > (formcomp as ttabwidget).tab_frame.template := (comp as tframecomp); > > But how set t

Re: [MSEide-MSEgui-talk] Skin center

2015-02-11 Thread Alexandre Minoshi
> Outch, tcustomtabwidget.ftabs is private. > > :-) -- Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things

Re: [MSEide-MSEgui-talk] Skin center

2015-02-11 Thread Alexandre Minoshi
Martin, I have last two questions for today: how set: - frame and face for spinedit buttons - frame and face for scrollbuttons Yours, A.M. -- Dive into the World of Parallel Programming. The Go Parallel Website, sponsore

Re: [MSEide-MSEgui-talk] Skin center

2015-02-11 Thread Martin Schreiber
On Wednesday 11 February 2015 10:19:50 Alexandre Minoshi wrote: > Martin, I have last two questions for today: > > how set: > - frame and face for spinedit buttons " thespinedit.frame.createbuttonframe(); thespinedit.frame.buttonframe.template:= theframetemplate; thespinedit.frame.createbuttonfa

Re: [MSEide-MSEgui-talk] Skin center

2015-02-11 Thread Alexandre Minoshi
11.02.2015 15:46, Martin Schreiber пишет: > On Wednesday 11 February 2015 10:19:50 Alexandre Minoshi wrote: >> Martin, I have last two questions for today: >> >> how set: >> - frame and face for spinedit buttons > " > thespinedit.frame.createbuttonframe(); > thespinedit.frame.buttonframe.templ

Re: [MSEide-MSEgui-talk] Skin center

2015-02-13 Thread Alexandre Minoshi
Hello again. >> >>- frame and face for scrollbuttons > >" > > thescrollingwidget.frame.sbhorz.createframeendbutton1(); > > thescrollingwidget.frame.sbhorz.frameendbutton1.template:= > > theframetemplate; > > thescrollingwidget.frame.sbhorz.createframebutton(); > > thescrollingwidget.frame.

Re: [MSEide-MSEgui-talk] Skin center

2015-02-13 Thread Alexandre Minoshi
> i try next code: > = > var > comp : TObject; //face or frame component > formcomp : TObject; //form where we set skin > ... > for y := 0 to form.componentcount - 1 do > begin >formcomp := form.components[y]; >... >(formcomp as tscr

Re: [MSEide-MSEgui-talk] Skin center

2015-02-13 Thread Alexandre Minoshi
>> == > Added: > > This code works only with tscrollingwidgets (for example timage) > But how to be with tscrollboxes, ttabpages and others components? > > O-o-o! It seems, I found how by myself === var sb : tscrollboxframe; ... if (formcomp as twidget).frame.classname = 'ts

Re: [MSEide-MSEgui-talk] Skin center

2015-02-13 Thread Martin Schreiber
On Friday 13 February 2015 17:42:17 Alexandre Minoshi wrote: > >> == > > > > Added: > > > > This code works only with tscrollingwidgets (for example timage) > > But how to be with tscrollboxes, ttabpages and others components? > > O-o-o! > It seems, I found how by myself > > ===

Re: [MSEide-MSEgui-talk] Skin center

2015-02-14 Thread Alexandre Minoshi
> " > The problem here is that settings can not be removed by later calls. > > Yes, I see: procedure tskinextender.removeskin(const ainfo: skininfoty; var handled: boolean); begin //dummy end; Next question: Is this way t

Re: [MSEide-MSEgui-talk] Skin center

2015-02-14 Thread Martin Schreiber
On Saturday 14 February 2015 11:47:56 Alexandre Minoshi wrote: > > " > > The problem here is that settings can not be removed by later calls. > > Yes, I see: > > procedure tskinextender.removeskin(const ainfo: skininfoty; > var handled: boo

Re: [MSEide-MSEgui-talk] Skin center

2015-02-14 Thread Alexandre Minoshi
> > Yes, tfiledialog.execute() calls tfiledialogfo.create() -> twidget.loaded() > calls updateskin(). > > No, I can not found by myself :-\ How to seize the moment when the MSEapplication creates a new window? A.M. -- D

Re: [MSEide-MSEgui-talk] Skin center

2015-02-14 Thread Martin Schreiber
On Saturday 14 February 2015 15:21:34 Alexandre Minoshi wrote: > > Yes, tfiledialog.execute() calls tfiledialogfo.create() -> > > twidget.loaded() calls updateskin(). > > No, I can not found by myself :-\ > > How to seize the moment when the MSEapplication creates a new window? > Use a tskincontrol

Re: [MSEide-MSEgui-talk] Skin center

2015-02-14 Thread Alexandre Minoshi
> Use a tskincontroller, set active to true. Either use the properties of > tskincontroller in order to update the skin of loaded components or use > tskincontroller.onafterupdate, ainfo.instance is the calling component. > > Martin > > -- And how without tskincontroller? A.M. --

Re: [MSEide-MSEgui-talk] Skin center

2015-02-14 Thread Martin Schreiber
On Saturday 14 February 2015 15:45:15 Alexandre Minoshi wrote: > > Use a tskincontroller, set active to true. Either use the properties of > > tskincontroller in order to update the skin of loaded components or use > > tskincontroller.onafterupdate, ainfo.instance is the calling component. > > > >

Re: [MSEide-MSEgui-talk] Skin center

2015-02-18 Thread Alexandre Minoshi
Hello, Martin! I found small bug with realspinedit buttons. 1) i set : trealspinedit1.frame.buttonframe := someframecomp; trealspinedit1.frame.buttonface := somefacecomp; 2) make and execute project (F9) 3) while running i change some values of someframecomp and somefacecomp. Changes are set su

Re: [MSEide-MSEgui-talk] Skin center

2015-02-18 Thread Alexandre Minoshi
> Hello, Martin! > > I found small bug with realspinedit buttons. > > 1) i set : > trealspinedit1.frame.buttonframe := someframecomp; > trealspinedit1.frame.buttonface := somefacecomp; > > 2) make and execute project (F9) > 3) while running i change some values of someframecomp and somefacecomp. >

Re: [MSEide-MSEgui-talk] Skin center

2015-02-18 Thread Martin Schreiber
On Wednesday 18 February 2015 09:03:23 Alexandre Minoshi wrote: > Hello, Martin! > > I found small bug with realspinedit buttons. > > 1) i set : > trealspinedit1.frame.buttonframe := someframecomp; > trealspinedit1.frame.buttonface := somefacecomp; > > 2) make and execute project (F9) > 3) while ru

Re: [MSEide-MSEgui-talk] Skin center

2015-02-18 Thread Martin Schreiber
On Wednesday 18 February 2015 09:38:00 Alexandre Minoshi wrote: > > Hello, Martin! > > > > I found small bug with realspinedit buttons. > > > > 1) i set : > > trealspinedit1.frame.buttonframe := someframecomp; > > trealspinedit1.frame.buttonface := somefacecomp; > > > > 2) make and execute project

Re: [MSEide-MSEgui-talk] Skin center

2015-02-18 Thread Alexandre Minoshi
> > twidget.invalidate() instead of twidget.invalidatewidget() has been called. > > Martin > > Yes, It`s works! Thanks. Now I start work under widget with dropdowns ... Yours, A.M. -- Download BIRT iHub F-Type - The Fre

Re: [MSEide-MSEgui-talk] Skin center

2015-02-18 Thread Alexandre Minoshi
Sorry, mistake: "widgets with dropdown ...", of cause -- Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server from Actuate! Instantly Supercharge Your Business Reports and Dashboards with Interactivity, Shar

Re: [MSEide-MSEgui-talk] Skin center

2015-02-19 Thread Alexandre Minoshi
> > Same problem with dropdown button faces > Hello, Martin. It seems same problem with tprogressbar.bar_face and bar_frame. And one more question, Martin. How change color of selected text? Yours, A.M. -- Download BIR

Re: [MSEide-MSEgui-talk] Skin center

2015-02-19 Thread Martin Schreiber
On Thursday 19 February 2015 17:18:09 Alexandre Minoshi wrote: > > Same problem with dropdown button faces > > Hello, Martin. > > It seems same problem with tprogressbar.bar_face and bar_frame. > Works for me, please send a testcase. > And one more question, Martin. How change color of selected te

Re: [MSEide-MSEgui-talk] Skin center

2015-02-19 Thread Alexandre Minoshi
19.02.2015 23:39, Martin Schreiber пишет: > setcolormapvalue(cl_selectedtext,); > setcolormapvalue(cl_selectedtextbackground,); Ho-ho! That is i need! Yours, A.M. -- Download BIRT iHub F-Type - The Free Enterprise-G

Re: [MSEide-MSEgui-talk] Skin center

2015-02-19 Thread Alexandre Minoshi
Well. Current test version http://almin-soft.ru/data/files/tmp/skins.tar.bz2 == For test how it`s work(under Linux): start one or some copies of test binary. start alsc try to change skin in dropdown. = For test on y

Re: [MSEide-MSEgui-talk] Skin center

2015-02-19 Thread Martin Schreiber
On Thursday 19 February 2015 19:24:05 Alexandre Minoshi wrote: > Well. Current test version > http://almin-soft.ru/data/files/tmp/skins.tar.bz2 > > == > For test how it`s work(under Linux): > start one or some copies of test binary. > start alsc > try to chan

Re: [MSEide-MSEgui-talk] Skin center

2015-02-19 Thread misu kun
nice program . some features would be good if added 1 - skining with images (most importent) 2 - add frame's hiddenedges 3 - menu 4 - final preview if i had time , i'll contribute -- Download BIRT iHub F-Type - The Free E

Re: [MSEide-MSEgui-talk] Skin center

2015-02-19 Thread Martin Schreiber
On Friday 20 February 2015 01:33:20 misu kun wrote: > nice program . > some features would be good if added > 1 - skining with images (most importent) 1a - a tool for making the frame imagelist items. Martin -- Download

Re: [MSEide-MSEgui-talk] Skin center

2015-02-21 Thread Alexandre Minoshi
> nice program . > some features would be good if added > 1 - skining with images (most importent) > 2 - add frame's hiddenedges > 3 - menu > 4 - final preview Working on it A.M. -- Download BIRT iHub F-Type - The Free

Re: [MSEide-MSEgui-talk] Skin center

2015-02-21 Thread Alexandre Minoshi
> 1a - a tool for making the frame imagelist items. > > Martin > I can`t understand, what is it? And one more question : how save tface.template.image? I try next variant: uses ... mseformatxpmread, mseformattiffread, mseformattgaread, mseformatpnmread, mseformatpngread, mseformatjpgread,

Re: [MSEide-MSEgui-talk] Skin center

2015-02-21 Thread Martin Schreiber
On Saturday 21 February 2015 18:53:37 Alexandre Minoshi wrote: > > 1a - a tool for making the frame imagelist items. > > > > Martin > > I can`t understand, what is it? > Have you already used twidget.frame.frameimage_* properties? An example is tstringedit4, tstringedit6 and tstringedit8 of apps/fa

Re: [MSEide-MSEgui-talk] Skin center

2015-02-25 Thread Alexandre Minoshi
http://almin-soft.ru/data/files/tmp/skins.tar.bz2 > some features would be good if added > 1 - skining with images (most importent) > 2 - add frame's hiddenedges > 3 - menu Done. And some other settings. > 4 - final preview H-m-m, at now i don`t know how do it, maybe later. > if i had time , i'll

Re: [MSEide-MSEgui-talk] Skin center

2015-02-25 Thread Alexandre Minoshi
http://almin-soft.ru/data/files/tmp/skins.tar.bz2 > some features would be good if added > 1 - skining with images (most importent) > 2 - add frame's hiddenedges > 3 - menu Done. And some other settings. > 4 - final preview H-m-m, at now i don`t know how do it, maybe later. > if i had time , i'll

Re: [MSEide-MSEgui-talk] Skin center

2015-02-25 Thread misu kun
thats so good Alexandre this program would be very useful . unfortunately i can't build on windows , some errors appeared >>Fatal: Can't find unit dateutils used by msesysintf1 >>Fatal: Compilation aborted -- Dive into t

Re: [MSEide-MSEgui-talk] Skin center

2015-02-25 Thread Martin Schreiber
On Wednesday 25 February 2015 21:59:38 misu kun wrote: > unfortunately i can't build on windows , some errors appeared > > >>Fatal: Can't find unit dateutils used by msesysintf1 > >>Fatal: Compilation aborted Works for me. Martin -

Re: [MSEide-MSEgui-talk] Skin center

2015-02-25 Thread Martin Schreiber
On Wednesday 25 February 2015 08:40:04 Alexandre Minoshi wrote: > > At now i try make a tool for making the frame imagelist items, as Martin > ask. Great! It would be convenient if you could develop in your Gitorious repository: https://gitorious.org/mseuniverse/alminsoft Martin --

Re: [MSEide-MSEgui-talk] Skin center

2015-02-26 Thread misu kun
it works now 2015-02-26 8:12 UTC+01:00, Martin Schreiber : > On Wednesday 25 February 2015 08:40:04 Alexandre Minoshi wrote: >> >> At now i try make a tool for making the frame imagelist items, as Martin >> ask. > > Great! It would be convenient if you could develop in your Gitorious > repository:

Re: [MSEide-MSEgui-talk] Skin center

2015-02-26 Thread Alexandre Minoshi
> it works now There is one little bug with saving face.template.image, wait for next release. A.M. -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership

Re: [MSEide-MSEgui-talk] Skin center

2015-02-26 Thread Alexandre Minoshi
Great! It would be convenient if you could develop in your Gitorious repository: https://gitorious.org/mseuniverse/alminsoft Martin Ok, lets check it. Step by step: 0.Extract attached archive somewere. 1.Copy all mseimage* files to {MSEDIR}/lib/common/designutils/ It ask for rewriting ms

Re: [MSEide-MSEgui-talk] Skin center

2015-02-26 Thread Martin Schreiber
On Thursday 26 February 2015 19:44:56 Alexandre Minoshi wrote: > > Ok, lets check it. > > Step by step: > 0.Extract attached archive somewere. > 1.Copy all mseimage* files to {MSEDIR}/lib/common/designutils/ > It ask for rewriting mseimagelisteditor* files - rewrite. > 2.Rebuild mseide. > 3.Run

Re: [MSEide-MSEgui-talk] Skin center

2015-02-26 Thread Martin Schreiber
On Friday 27 February 2015 08:47:31 Martin Schreiber wrote: > > Nice! > Suggestion: Instead to extend "mseimagelisteditor" make a standalone > application with your imagelist extractor form. Or even better, integrate it in your skin center application. Martin

Re: [MSEide-MSEgui-talk] Skin center

2015-02-27 Thread Alexandre Minoshi
27.02.2015 13:47, Martin Schreiber пишет: > On Thursday 26 February 2015 19:44:56 Alexandre Minoshi wrote: >> Ok, lets check it. >> >> Step by step: >> 0.Extract attached archive somewere. >> 1.Copy all mseimage* files to {MSEDIR}/lib/common/designutils/ >> It ask for rewriting mseimagelisted

Re: [MSEide-MSEgui-talk] Skin center

2015-02-27 Thread Martin Schreiber
On Friday 27 February 2015 14:36:03 Alexandre Minoshi wrote: > > No problem to make standalone application, but how to be with sizes of > pixmaps? There are will be defferent (4x4, 8x8, etc). Example for 4x4: create a 16x8 tmaskedbitmap and move the imagelist items with tcanvas.copyarea() to the

Re: [MSEide-MSEgui-talk] Skin center

2015-02-27 Thread Alexandre Minoshi
>> No problem to make standalone application > Done. Page of component http://almin-soft.ru/index.php?komponenty/mseimagelistextractor/tags/mseimagelistextractor (on russian, but Google translate present) Direct link to linux binary (32 bit) http://almin-soft.ru/data/files/mseimagelistextra

Re: [MSEide-MSEgui-talk] Skin center

2015-02-28 Thread Martin Schreiber
On Friday 27 February 2015 17:27:47 Alexandre Minoshi wrote: > >> No problem to make standalone application > > Done. > > Page of component > http://almin-soft.ru/index.php?komponenty/mseimagelistextractor/tags/mseima >gelistextractor (on russian, but Google translate present) > > Direct link to l

Re: [MSEide-MSEgui-talk] Skin center

2015-02-28 Thread Alexandre Minoshi
> I added statfile and support for transparency: > https://gitorious.org/mseuniverse/alminsoft/source/fafd57dca2d4187378eda5c4ee0427a06f74e788: > https://gitorious.org/mseuniverse/alminsoft > (branch mse) Ok > Maybe we should rename the application to MSEframeimage and push it here: > https://git

Re: [MSEide-MSEgui-talk] Skin center

2015-02-28 Thread Alexandre Minoshi
Martin! I can not catch what different between tframecomp.template.frameimage_offset and tframecomp.template.frameimage_offset1? Yours, A.M. -- Dive into the World of Parallel Programming The Go Parallel Website, spons

Re: [MSEide-MSEgui-talk] Skin center

2015-03-01 Thread Martin Schreiber
On Sunday 01 March 2015 06:06:33 Alexandre Minoshi wrote: > > I added statfile and support for transparency: > > https://gitorious.org/mseuniverse/alminsoft/source/fafd57dca2d4187378eda5 > >c4ee0427a06f74e788: https://gitorious.org/mseuniverse/alminsoft > > (branch mse) > > Ok > > > Maybe we should

Re: [MSEide-MSEgui-talk] Skin center

2015-03-01 Thread Martin Schreiber
On Sunday 01 March 2015 07:02:54 Alexandre Minoshi wrote: > Martin! > > I can not catch what different between > tframecomp.template.frameimage_offset and > tframecomp.template.frameimage_offset1? > It is used in order to select another image group for a different state: " function calcframestateof

Re: [MSEide-MSEgui-talk] Skin center

2015-03-01 Thread Martin Schreiber
On Sunday 01 March 2015 09:25:25 Martin Schreiber wrote: > On Sunday 01 March 2015 06:06:33 Alexandre Minoshi wrote: > > > I added statfile and support for transparency: > > > https://gitorious.org/mseuniverse/alminsoft/source/fafd57dca2d4187378ed > > >a5 c4ee0427a06f74e788: https://gitorious.org/m

Re: [MSEide-MSEgui-talk] Skin center

2015-03-02 Thread Alexandre Minoshi
:) Maybe latter A.M. -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development,

Re: [MSEide-MSEgui-talk] Skin center

2015-03-02 Thread Alexandre Minoshi
Frameimage added! http://almin-soft.ru/data/files/tmp/skins.tar.bz2 Please, test Yours, A.M. -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with

Re: [MSEide-MSEgui-talk] Skin center

2015-03-02 Thread misu kun
are you using msegui 3.6 ? , with 3.7 i got error saying EReadError : Error reading s_frame.frame.font.localprops : Unknown property:"localprops" -- Dive into the World of Parallel Programming The Go Parallel Website, spo

Re: [MSEide-MSEgui-talk] Skin center

2015-03-02 Thread Alexandre Minoshi
I use 3.7 A.M. -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from we

Re: [MSEide-MSEgui-talk] Skin center

2015-03-02 Thread Martin Schreiber
On Monday 02 March 2015 19:07:56 Alexandre Minoshi wrote: > Frameimage added! > > http://almin-soft.ru/data/files/tmp/skins.tar.bz2 > > Please, test > Maybe later! :-) Martin -- Dive into the World of Parallel Programming

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread misu kun
nice indeed 2015-03-03 7:53 UTC+01:00, Martin Schreiber : > On Monday 02 March 2015 19:07:56 Alexandre Minoshi wrote: >> Frameimage added! >> >> http://almin-soft.ru/data/files/tmp/skins.tar.bz2 >> >> Please, test >> > Maybe later! :-) > > Martin > > --

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Alexandre Minoshi
> nice indeed > > > > > Please, check, whether the setting face for dropdown window or not? A.M. -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership wit

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Martin Schreiber
On Monday 02 March 2015 19:07:56 Alexandre Minoshi wrote: > Frameimage added! > Just a hint: there are also tframe.frameface_* and tface.frameimage_*. tframe.frameface_* paints the background, tframe.frameimage paints an overlay. Martin

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread misu kun
2015-03-03 10:40 UTC+01:00, Alexandre Minoshi : > >> nice indeed >> >> >> >> >> > Please, check, whether the setting face for dropdown window or not? > > A.M. > the dropdown window is black , -- Dive into the World of Para

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread misu kun
the test program did not work !! -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software deve

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Graeme Geldenhuys
On 2015-03-02 17:05, Alexandre Minoshi wrote: > Maybe latter I never understand the hesitation to publish and share open source work. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Alexandre Minoshi
03.03.2015 18:46, Graeme Geldenhuys пишет: > On 2015-03-02 17:05, Alexandre Minoshi wrote: >> Maybe latter ??? Graeme, i really do not understand why you say that. I have several times gave direct links to my projects. Especially for you - all programs (code and compiled binaries) you can find on

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Martin Schreiber
On Tuesday 03 March 2015 15:26:42 Alexandre Minoshi wrote: > 03.03.2015 18:46, Graeme Geldenhuys пишет: > > On 2015-03-02 17:05, Alexandre Minoshi wrote: > >> Maybe latter > > ??? > Graeme, i really do not understand why you say that. > I have several times gave direct links to my projects. Especia

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Alexandre Minoshi
03.03.2015 20:44, Martin Schreiber пишет: > Ouch!! > No serious software producer can work without git or a similar version control > system. If you like I can help you with setting up your projects on > MSEuniverse. > > Martin I can :) Some time ago I was a freelancer and programmed for a mon

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Martin Schreiber
On Tuesday 03 March 2015 16:05:15 Alexandre Minoshi wrote: > 03.03.2015 20:44, Martin Schreiber пишет: > > Ouch!! > > No serious software producer can work without git or a similar version > > control system. If you like I can help you with setting up your projects > > on MSEuniverse. > > > > M

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Alexandre Minoshi
> Sorry, I can't believe it. Believe or not believe, but it was. Of cause we had not big money but it was enough for me. > You probably lost 10..20% of productivity and the quality of the > product most likely suffered. May be. A few months ago I was in a one state office (not big, in fact). I

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Martin Schreiber
On Tuesday 03 March 2015 16:45:49 Alexandre Minoshi wrote: > I try to set colorselect for dropdowns. > >tdropdownlistedit1.dropdown.cols.colorselect := tcoloredit16.value; > //it works > >tpagesizeselector1.dropdown.cols.colorselect := tcoloredit16.value; > //it not works > > How to be? >

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Graeme Geldenhuys
On 2015-03-03 14:26, Alexandre Minoshi wrote: > Graeme, i really do not understand why you say that. My apologies - the down side of communicating via email. Often information gets lost in translation. I didn't mean you don't share open source work at all. I actually really like your FrameImageMa

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Graeme Geldenhuys
On 2015-03-03 15:27, Martin Schreiber wrote: > Sorry, I can't believe it. You probably lost 10..20% of productivity and the > quality of the product most likely suffered. git as working background makes > programmers live so much easier. +1000 Regards, - Graeme - ---

Re: [MSEide-MSEgui-talk] Skin center

2015-03-03 Thread Martin Schreiber
On Tuesday 03 March 2015 18:05:56 Graeme Geldenhuys wrote: > > I've taught many developers in companies to use Git. I've always found > that they learn the quickest by using the command line. I suggest to use MSEgit, it seems to do its job: http://sourceforge.net/p/mseide-msegui/mailman/message/33

Re: [MSEide-MSEgui-talk] Skin center

2015-03-04 Thread Martin Schreiber
On Tuesday 03 March 2015 16:45:49 Alexandre Minoshi wrote: > I try to set colorselect for dropdowns. > >tdropdownlistedit1.dropdown.cols.colorselect := tcoloredit16.value; > //it works > >tpagesizeselector1.dropdown.cols.colorselect := tcoloredit16.value; > //it not works > Please try agai

Re: [MSEide-MSEgui-talk] Skin center

2015-03-05 Thread Alexandre Minoshi
Please try again with git master f685d8169921988f755ea345893833ec76a30cd3. Martin Yes, it works now, thanks! Martin, last question today: how understand is somewidget.frame has sbvert and sbhorz properties? I try next code = functi

Re: [MSEide-MSEgui-talk] Skin center

2015-03-05 Thread Ivanko B
Sorry, I can't believe it. You probably lost 10..20% of productivity and the quality of the product most likely suffered. git as working background makes programmers live so much easier. == You're just unware of the xUSSR reality - technicians in our are usually overhelmed by work -

Re: [MSEide-MSEgui-talk] Skin center

2015-03-05 Thread Alexandre Minoshi
> You're just unware of the xUSSR reality - technicians in our are > usually overhelmed by work - not only their duties but also EVERYTHING > technically related. Programmers considered as smart people may be > ordered or asked to fix computer viruses & HDD errors, to break & wire > a LAN through

Re: [MSEide-MSEgui-talk] Skin center

2015-03-05 Thread Alexandre Minoshi
> > > > Martin, last question today: how understand is somewidget.frame has > sbvert and sbhorz properties? > > I try next code > = > function HasProperty(Obj: TObject; PropName: String; PropKinds: > TTypeKinds = []): boolean; > begin >

Re: [MSEide-MSEgui-talk] Skin center

2015-03-05 Thread Martin Schreiber
On Thursday 05 March 2015 20:05:30 Alexandre Minoshi wrote: > > Please try again with git master > > f685d8169921988f755ea345893833ec76a30cd3. > > > > Martin > > Yes, it works now, thanks! > > Martin, last question today: how understand is somewidget.frame has > sbvert and sbhorz properties? > > I

Re: [MSEide-MSEgui-talk] Skin center

2015-03-05 Thread Martin Schreiber
On Thursday 05 March 2015 20:32:47 Ivanko B wrote: > Sorry, I can't believe it. You probably lost 10..20% of productivity and > the quality of the product most likely suffered. git as working background > makes programmers live so much easier. > == > You're just unware of the xUSSR

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Ivanko B
In my opinion in such a situation a productivity gain should be most welcome == No, in this scenario the need to learn GIT etc may feel as one more step into hell. Me have a similar problem with GIT as Alexandre (me undestand him) has - it just can't fit my mind easily. ---

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Ivanko B
BTW, I also know Swiss companies which develop embedded software without a VCS, they store different releases in different directories, thats it. Unbelievable. = In the current PHP+JS+AJAX project (BTW it may give some ideas to MSElang) me do so as well - although very unhandy &

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Martin Schreiber
On Friday 06 March 2015 09:22:09 Ivanko B wrote: > In my opinion in such a situation a productivity gain should be most > welcome == > No, in this scenario the need to learn GIT etc may feel as one more > step into hell. > Me have a similar problem with GIT as Alexandre (me unde

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Graeme Geldenhuys
On 2015-03-06 08:22, Ivanko B wrote: > Me have a similar problem with GIT as Alexandre (me undestand him) has > - it just can't fit my mind easily. I still don't understand why. Git has tons of excellent documentation as standard. They even maintain an open source book (available on Amazon, or dow

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Alexandre Minoshi
Martin! Can you add frames and captions for toolbar.buttons? A.M. -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hu

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Martin Schreiber
On Friday 06 March 2015 13:25:43 Alexandre Minoshi wrote: > Martin! > > Can you add frames and captions for toolbar.buttons? > ttoolbar has no captions, please use tmainmenuwidget instead. Another possibility is a tdockpanel with sub-widgets in tdockpanel.dragdock.optionsdock [oe_nofit,oe_banded,

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Alexandre Minoshi
Oh, Graeme! Why you cann`t understand, that sometimes there are people who just do not need git :) Ferrari is great car, fast and beatyfull, but i do not need it. A.M. -- Dive into the World of Parallel Programming Th

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Alexandre Minoshi
06.03.2015 18:54, Martin Schreiber пишет: A frame effect for toolbar buttons can be made with ttoolbar.buttons.frameimage_*. Martin Where? -- Dive into the World of Parallel Programming The Go Parallel Website, sponso

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Martin Schreiber
On Friday 06 March 2015 13:54:17 Alexandre Minoshi wrote: > Oh, Graeme! > > Why you cann`t understand, that sometimes there are people who just do > not need git :) > You do need it, believe me. Just try it! Martin -- Div

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Martin Schreiber
On Friday 06 March 2015 14:08:51 Alexandre Minoshi wrote: > 06.03.2015 18:54, Martin Schreiber пишет: > > A frame effect for toolbar buttons can be made with > > ttoolbar.buttons.frameimage_*. > > > > Martin > > Where? ttoolbar.buttons.face.frameimage_*. Sorry. -

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Ivanko B
I still don't understand why. = Because of brain overloading. Too large & complicated but optional piece of knowledge. Git has tons of excellent documentation as standard. = Any excellent documentation can't clarify GIT branching & merging & cooperative edit

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Martin Schreiber
On Friday 06 March 2015 14:45:26 Ivanko B wrote: > Git has tons of excellent documentation as standard. > = > Any excellent documentation can't clarify GIT branching & merging & > cooperative editing. > Branching is giving a snapshot a symbolic name. If one commits changes based

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Fred van Stappen
> Because of brain overloading. Too large & complicated but optional > piece of knowledge. Hello. Hum, I can understand that all that git-talibans who want to convert you => it scares you. It was the same for me ;-) My 10-cent-advice is to begin with the beginning. Go to https://github.com/ an

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Alexandre Minoshi
ttoolbar.buttons.face.frameimage_*. H-m-m. There is no "offsetactive", "offsetmouse" and so on :( I tried to add frames to msetoolbar.tcustomtoolbuttons by myself but got error "Class or Object types "tcustomtoolbuttons" and "iframe" are not related" in tcustomtoolbuttons.createframe. I do

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Patrick Goupell
On 03/06/2015 08:45 AM, Ivanko B wrote: > I still don't understand why. > = > Because of brain overloading. Too large & complicated but optional > piece of knowledge. > > Git has tons of excellent documentation as standard. > = > Any excellent documentation

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Graeme Geldenhuys
On 2015-03-06 13:24, Martin Schreiber wrote: > You do need it, believe me. +1 :-D Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal http://fpgui.sourceforge.net/ -- Dive into the

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Graeme Geldenhuys
On 2015-03-06 13:45, Ivanko B wrote: > Any excellent documentation can't clarify GIT branching & merging & > cooperative editing. Have you actually read the Pro Git book? It makes it crystal clear. I just taught 5 developers in a company. They have used SubVersion in the past and was afraid to swi

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Patrick Goupell
On 03/06/2015 09:06 AM, Patrick Goupell wrote: > > On 03/06/2015 08:45 AM, Ivanko B wrote: >> I still don't understand why. >> = >> Because of brain overloading. Too large & complicated but optional >> piece of knowledge. >> >> Git has tons of excellent documentation as standa

Re: [MSEide-MSEgui-talk] Skin center

2015-03-06 Thread Graeme Geldenhuys
On 2015-03-06 14:06, Patrick Goupell wrote: > do the examples in the first > few chapters and you should get teh hang of it without trouble. Exactly. You don't even need to experiment on your current work. Git works offline, so to get started simply create any empty directory and experiment. $

  1   2   >