Jump to page: 1 24  
Page
Thread overview
DGui is alive
May 20, 2014
Denis Shelomovskij
May 20, 2014
FrankLike
May 20, 2014
FrankLike
May 20, 2014
FrankLike
May 20, 2014
Denis Shelomovskij
May 20, 2014
Suliman
May 21, 2014
Denis Shelomovskij
May 21, 2014
Suliman
May 21, 2014
Denis Shelomovskij
May 21, 2014
Suliman
May 21, 2014
andre
May 24, 2014
Denis Shelomovskij
May 25, 2014
FrankLike
May 25, 2014
FrankLike
May 26, 2014
Kagamin
May 26, 2014
Andre
May 30, 2014
Denis Shelomovskij
Jun 02, 2014
FrankLike
Jun 02, 2014
FrankLike
Jun 02, 2014
uri
Jun 25, 2014
FrankLike
Jun 25, 2014
Gary Willoughby
Jun 26, 2014
FrankLike
Jun 26, 2014
Gary Willoughby
Jul 23, 2014
FrankLike
Jul 23, 2014
Gary Willoughby
for team
Jun 26, 2014
Cassio Butrico
Oct 12, 2014
Frank Like
Oct 12, 2014
Gary Willoughby
Oct 13, 2014
FrankLike
May 20, 2014
DGui is a lightweight graphic library for Windows with API close to .NET's Windows Forms.

The library is written by Trogu Antonio Davide, but he isn't supporting it any longer so you can refer me as a current project manager.

One can get examples and OMF import libraries needed to build executables from "Downloads" section on project page.

Project repo page:
https://bitbucket.org/dgui/dgui/


Note:

The project API should be stable now, but lots of stylistic renames happened recently so if one has a huge codebase using old names and want to upgrade to current version you can contact me and I will prepare autorenaming scripts for you (I used it to do renaming anyway).

Sorry for API breakage, I just couldn't see all those C-style uppercased enums any more.


P.S.

I was waiting to be able to do planned API breaking changes before posting here so the announce is half a year later than the project resurrection date.

-- 
Денис В. Шеломовский
Denis V. Shelomovskij
May 20, 2014
On Tuesday, 20 May 2014 at 07:20:16 UTC, Denis Shelomovskij wrote:
> DGui is a lightweight graphic library for Windows with API close to .NET's Windows Forms.
>
> The library is written by Trogu Antonio Davide, but he isn't supporting it any longer so you can refer me as a current project manager.
>
> One can get examples and OMF import libraries needed to build executables from "Downloads" section on project page.
>
> Project repo page:
> https://bitbucket.org/dgui/dgui/
>
>
> Note:
>
> The project API should be stable now, but lots of stylistic renames happened recently so if one has a huge codebase using old names and want to upgrade to current version you can contact me and I will prepare autorenaming scripts for you (I used it to do renaming anyway).
>
> Sorry for API breakage, I just couldn't see all those C-style uppercased enums any more.
>
>
> P.S.
>
> I was waiting to be able to do planned API breaking changes before posting here so the announce is half a year later than the project resurrection date.

Good work!

DGui need some other controls,such as imageButton,DataView,GridView....e.t.c.

Thank you.

Frank
May 20, 2014
>> DGui is a lightweight graphic library for Windows with API close to .NET's Windows Forms.

DGui's codes are less than DFL,it's  a better thing.If it can work on Linux,Mac Os X,maybe change it by Base Class?
It's a huge work!

Thank you.

Frank

May 20, 2014
Can you put DGui into github.com  and code.dlang.org ?
Let all d's coders build on it!
> Thank you.
>
> Frank

May 20, 2014
20.05.2014 18:11, FrankLike пишет:
> Can you put DGui into github.com  and code.dlang.org ?
> Let all d's coders build on it!
>> Thank you.
>>
>> Frank
>

It is already in code.dlang.org. As for Github I have already answered here [1].

[1] http://forum.dlang.org/post/llf00b$2pl5$1@digitalmars.com

-- 
Денис В. Шеломовский
Denis V. Shelomovskij
May 20, 2014
> DGui need some other controls,such as imageButton,DataView,GridView....e.t.c.
>
> Thank you.
>
> Frank

Yes, I very need imageButton. Is there any chance that they will be developed in nearest time?

I need example how to draw line (small Paint) with this lib. Does DGUI can do it? If not I would need to look for alternative...
May 21, 2014
20.05.2014 22:46, Suliman пишет:
>> DGui need some other controls,such as
>> imageButton,DataView,GridView....e.t.c.
>>
>> Thank you.
>>
>> Frank
>
> Yes, I very need imageButton. Is there any chance that they will be
> developed in nearest time?

No, not in near future. General usage of buttons with images is a `ToolBar` so there is a `ToolButton` with image. As for other controls, e.g. a regular `Button`, one can draw everything in `paint` event.

>
> I need example how to draw line (small Paint) with this lib. Does DGUI
> can do it? If not I would need to look for alternative...

Here is an example of button with image and lines drawn on it:
https://gist.github.com/denis-sh/56e2104dba7d9793f68d

-- 
Денис В. Шеломовский
Denis V. Shelomovskij
May 21, 2014
On Wednesday, 21 May 2014 at 08:25:20 UTC, Denis Shelomovskij wrote:
> 20.05.2014 22:46, Suliman пишет:
>>> DGui need some other controls,such as
>>> imageButton,DataView,GridView....e.t.c.
>>>
>>> Thank you.
>>>
>>> Frank
>>
>> Yes, I very need imageButton. Is there any chance that they will be
>> developed in nearest time?
>
> No, not in near future. General usage of buttons with images is a `ToolBar` so there is a `ToolButton` with image. As for other controls, e.g. a regular `Button`, one can draw everything in `paint` event.

What is the difference between imageButton and ToolButton?

May 21, 2014
21.05.2014 15:05, Suliman пишет:
> On Wednesday, 21 May 2014 at 08:25:20 UTC, Denis Shelomovskij wrote:
>> 20.05.2014 22:46, Suliman пишет:
>>>> DGui need some other controls,such as
>>>> imageButton,DataView,GridView....e.t.c.
>>>>
>>>> Thank you.
>>>>
>>>> Frank
>>>
>>> Yes, I very need imageButton. Is there any chance that they will be
>>> developed in nearest time?
>>
>> No, not in near future. General usage of buttons with images is a
>> `ToolBar` so there is a `ToolButton` with image. As for other
>> controls, e.g. a regular `Button`, one can draw everything in `paint`
>> event.
>
> What is the difference between imageButton and ToolButton?
>

There is no `imageButton` objects in DGui. `ToolButton` is a button placed in `ToolBar` and it can have an image.


-- 
Денис В. Шеломовский
Denis V. Shelomovskij
May 21, 2014
So about what Frank talk?

>> DGui need some other controls,such as
>> imageButton,DataView,GridView....e.t.c.
« First   ‹ Prev
1 2 3 4