Author |
Message |
Topic: QtD - stable enough for realworld projects? |
Mengu
Replies: 1
Views: 12591
|
Forum: QtD Posted: Wed Jan 26, 2011 5:36 pm Subject: QtD - stable enough for realworld projects? |
i believe it is. i have never confronted a problem, yet. |
Topic: Background image for window |
Mengu
Replies: 1
Views: 8032
|
Forum: gtkD Posted: Wed Jan 26, 2011 5:34 pm Subject: Background image for window |
yes, it is gdk.Window.setBackPixmap(Pixmap pixmap, int parentRelative). |
Topic: Memory Management |
Mengu
Replies: 6
Views: 16487
|
Forum: gtkD Posted: Wed Jul 28, 2010 5:40 am Subject: Memory Management |
Memory management isn't all that good, there are for example some objects witch need to be explicitly destroyed.
what are these objects? |
Topic: Button Size |
Mengu
Replies: 1
Views: 8775
|
Forum: gtkD Posted: Thu May 20, 2010 11:05 am Subject: Button Size |
hello thora,
put your elements to gtk alignments and set alignment x and y to 0. and then you will be able to change the element sizes. |
Topic: GtkSourceCompletion |
Mengu
Replies: 3
Views: 10014
|
Forum: gtkD Posted: Tue Apr 13, 2010 2:51 pm Subject: GtkSourceCompletion |
It's on the
but how it will work when the bindings are not written? i actually would like to help on this if you guide my way. |
Topic: GtkSourceCompletion |
Mengu
Replies: 3
Views: 10014
|
Forum: gtkD Posted: Mon Apr 12, 2010 9:07 pm Subject: GtkSourceCompletion |
Hi,
Are we able to use GtkSourceCompletion for GtkSourceView? If not, what should be the way to write the bindings? |
Topic: How to iterate through getChildren |
Mengu
Replies: 3
Views: 9760
|
Forum: gtkD Posted: Mon Apr 12, 2010 1:49 pm Subject: How to iterate through getChildren |
You could turn the GList into a array of widgets like so:
ListG list = HBox.getChildren();
Widget[] widgets;
for (int i=0; i < list.length; i++)
{
widgets ... |
Topic: How to iterate through getChildren |
Mengu
Replies: 3
Views: 9760
|
Forum: gtkD Posted: Mon Apr 12, 2010 12:37 pm Subject: How to iterate through getChildren |
Hi,
I have a Notebook and as my tab labels I have HBox which consists of a Button for closing the notebook tab and Label as the file name. I would like to know how can I access the Label from HBox. ... |
Topic: About GtkTreeModelForeachFunc |
Mengu
Replies: 5
Views: 12345
|
Forum: gtkD Posted: Mon Apr 12, 2010 12:31 pm Subject: About GtkTreeModelForeachFunc |
That is a GtkTreeModelForeachFunc But i have to give it a name in this case foreachNodeFunc since it's called for each node, or did you mean something else?
my intention was getting all the iters i ... |
Topic: About GtkTreeModelForeachFunc |
Mengu
Replies: 5
Views: 12345
|
Forum: gtkD Posted: Sun Apr 11, 2010 11:47 am Subject: About GtkTreeModelForeachFunc |
You would use it like this:
myModel.foreac(&foreachNodeFunc, null);
static extern(C) bool foreachNodeFunc(GtkTreeModel* model, GtkTreePath* path, GtkTreeIter* iter, void* ... |
Topic: About GtkTreeModelForeachFunc |
Mengu
Replies: 5
Views: 12345
|
Forum: gtkD Posted: Sat Apr 10, 2010 6:28 pm Subject: About GtkTreeModelForeachFunc |
I have dealed with this with iterNext method, however I really would like to understand how GtkTreeModelForeachFunc works. |
Topic: About GtkTreeModelForeachFunc |
Mengu
Replies: 5
Views: 12345
|
Forum: gtkD Posted: Sat Apr 10, 2010 8:55 am Subject: About GtkTreeModelForeachFunc |
Hi,
I would like to get all the elements in a treeview with its model liststore and I see I have to use GtkTreeModelForeachFunc but I have no idea on using it. Some help would be great.
Thanks i ... |
Topic: TreeView as a side widget |
Mengu
Replies: 1
Views: 7621
|
Forum: gtkD Posted: Sat Mar 27, 2010 2:22 pm Subject: TreeView as a side widget |
Hi,
I wonder if I can make my treeview like in this picture: http://omploader.org/vM3licQ/Screenshot.png it is on the sidebar and outside of the window.
Thanks. |
Topic: Commercial Apps |
Mengu
Replies: 2
Views: 8865
|
Forum: gtkD Posted: Wed Mar 24, 2010 4:52 pm Subject: Commercial Apps |
Yes you can use GtkD with commercial applications.
GtkD uses the LGPL with exceptions, see: http://www.dsource.org/projects/gtkd/browser/trunk/COPYING
As for now you would only have to mention y ... |
Topic: Commercial Apps |
Mengu
Replies: 2
Views: 8865
|
Forum: gtkD Posted: Wed Mar 24, 2010 3:00 pm Subject: Commercial Apps |
Hi,
Can we develop commercial applications with GtkD? How should I distribute my program? How should I license it?
Thanks. |
|