Re: [MSEide-MSEgui-talk] object inspector problem

2017-03-16 Thread Martin Schreiber
On Thursday 16 March 2017 22:06:15 Krzysztof wrote:
> 2017-03-16 10:46 GMT+01:00 Julio Jiménez :
> > A picture is worth a thousand words.  ;)
>
> Thanks a lot Julio! Finally understand it! What I did wrong is that I
> always added not enough panels so tabs for "source | mainform |" didn't
> work properly (they disappeared when tried add components palette at top or
> messages at bottom of dock panel). For this case, (each) component palette,
> source and messages must be in own container and then they can be merged
> into one so source editor container keep its tabs.

Are you sure? There must be a tabbed container (C) for the 
source(F)/message(G) combination(D) and the design form(E). The component 
palette(B) above does not need an own container. A is the docking area or a 
floating panel.

A--+
|B+|
||Component Palette   ||
|C+|
||D Source,Messages|E main.mfm||
||D--+||
|||F+|||

   Source   

|||G+|||
   Messages 
|||++|||
||+--+||
|++|
+--+

> @Martin. You could put that video in git repo or somewhere in sourceforge
> wiki so we don't lose it, it is only 1.4MB and very helpfull for newbies in
> docking :) .

@code dz:
Do you like to push the video to MSEuniverse Wiki? Please register on Gitlab 
and send me your username.
https://gitlab.com/users/sign_in

Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] FontAwesome - change icon height on the fly

2017-03-16 Thread Martin Schreiber
On Thursday 16 March 2017 20:47:30 Krzysztof wrote:
> 2017-03-15 16:01 GMT+01:00 Martin Schreiber :
> > It still works for me. When I open a popup menu and click on close button
> > of
> > the window decoration the popup closes.
>
> Forgot to add important detail that I'm showing popup menu manually on left
> button click:
>
> procedure TfrmViewTree.ShowViewPopup(const sender: TObject);
> begin
>
> popView.show(btnView,translateclientpoint(application.mouse.pos,nil,btnView
>)); end;
>
Please send a simple testcase.

Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] object inspector problem

2017-03-16 Thread Krzysztof
2017-03-16 10:46 GMT+01:00 Julio Jiménez :
>
> A picture is worth a thousand words.  ;)
>

Thanks a lot Julio! Finally understand it! What I did wrong is that I
always added not enough panels so tabs for "source | mainform |" didn't
work properly (they disappeared when tried add components palette at top or
messages at bottom of dock panel). For this case, (each) component palette,
source and messages must be in own container and then they can be merged
into one so source editor container keep its tabs.
@Martin. You could put that video in git repo or somewhere in sourceforge
wiki so we don't lose it, it is only 1.4MB and very helpfull for newbies in
docking :) . Now I must try to port Lazarus code completion (missing global
vars / object methods hints in MSE IDE) and I'll be happy as never have
been :)
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] FontAwesome - change icon height on the fly

2017-03-16 Thread Krzysztof
2017-03-15 16:01 GMT+01:00 Martin Schreiber :
>
> It still works for me. When I open a popup menu and click on close button
> of
> the window decoration the popup closes.


Forgot to add important detail that I'm showing popup menu manually on left
button click:

procedure TfrmViewTree.ShowViewPopup(const sender: TObject);
begin

popView.show(btnView,translateclientpoint(application.mouse.pos,nil,btnView));
end;

With context menus indeed it is working fine
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Anchors

2017-03-16 Thread code dz
thanks

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] Anchors

2017-03-16 Thread Martin Schreiber
On Thursday 16 March 2017 11:18:58 code dz wrote:
> Hi Martin
> in runtime if you maximize the window (with maximize button), the
> ttabwidget1 wont streach horizontally until i move the splitter . i
> think my anchors is correct !
> can you test please ?

Please set tsimplewidet2.anchors to [an_left,an_right].

Martin

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


[MSEide-MSEgui-talk] Anchors

2017-03-16 Thread code dz
Hi Martin
in runtime if you maximize the window (with maximize button), the
ttabwidget1 wont streach horizontally until i move the splitter . i
think my anchors is correct !
can you test please ?


test.7z
Description: Binary data
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] object inspector problem

2017-03-16 Thread Julio Jiménez
2017-03-16 9:02 GMT+01:00 code dz :

> here you go : https://youtu.be/8W0uRA0qHTM
>
>
>
A picture is worth a thousand words.  ;)



-- 
Julio Jiménez Borreguero
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] object inspector problem

2017-03-16 Thread Julio Jiménez
2017-03-16 7:50 GMT+01:00 Martin Schreiber :

>
>
> It is easy! ;-)
>
>
Yes, it's easy once you know how it works ;) but I was talking about new
users. This docking system is not something common so new users expect
someting like Delphi, Lazarus, Netbeans...

I remember it took me some time to understand how it worked. It was years
ago.


-- 
Julio Jiménez Borreguero
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] WebAssembly

2017-03-16 Thread Michael Schnell
On 16.03.2017 07:40, Martin Schreiber wrote:
> That could be possible but it is not "standard", which means nobody 
> will use it. 

Hmm. I did not at all think about any "standard" (meaning the providers 
of the two parts being different companies).

In the parsed few years, I came across several project that should run 
on a non-monitored server (i. e. as a part of a kind of "embedded" 
application). Besides decent PC applications (e.g. behind a standard Web 
server at a provider's site), there also might be rather small self 
contained "gadgets" providing a web server. The new name of such devices 
is "IOT" and a real hype at the moment. Enabling mse user to easily do 
software for those IMHO is a very viable issue.

Now such programs or devices do need maintenance, and here they could 
provide a website showing their GUI in the users' Browser.

With the method described these projects could be developed and tested 
locally (in a user friendly "RAD" type of developing process) and be 
"split up" using ifi to run freely on the server unless somebody decides 
to attach.

-Michael

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk


Re: [MSEide-MSEgui-talk] object inspector problem

2017-03-16 Thread code dz
here you go : https://youtu.be/8W0uRA0qHTM

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
___
mseide-msegui-talk mailing list
mseide-msegui-talk@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mseide-msegui-talk