Search found 15 matches

by EDDIE_THE_HEAD
Thu 13 Dec 2012, 22:32
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

@Thunor Thanks for everything. I haven't tried that C code you posted 'cause I've been occupied with other things and had no time to fix some issues in the virtual machine where I'm running Ubuntu. I believe that (the fact that I'm running it in VirtualBox) is the only difference in my setup, so it ...
by EDDIE_THE_HEAD
Mon 10 Dec 2012, 01:27
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

Nope. No menus in Ubuntu 12.10 either... It is starting to drive me crazy. I guess I'll have to switch to Mint for the moment :)
by EDDIE_THE_HEAD
Sun 09 Dec 2012, 23:20
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

I got a reply from Francois of LiveUSB Multiboot and he said that "for me and all multisystem users, gtkdialog 0.8.2 works fine with Ubuntu 12.04 and 12.10". Well that's great news, though it makes me even more curious about what's causing the problem in my case. A little question off the...
by EDDIE_THE_HEAD
Sun 09 Dec 2012, 18:48
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

Thunor, Yesterday I tried gtkdialog in Linux Mint 14 and the menus are working! Since it is ubuntu-based I kinda was expecting to come across the same issue but luckily I didn't. This led me to think that maybe something was wrong with my ubuntu config so I ran a clean install in virtualbox but stil...
by EDDIE_THE_HEAD
Sat 08 Dec 2012, 07:25
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

thunor wrote: Can you please supply me with your version of Ubuntu and the output from these:

Code: Select all

pkg-config --modversion gtk+-2.0
pkg-config --modversion glib-2.0

Code: Select all

ale@Linux:~$ pkg-config --modversion gtk+-2.0
2.24.10
ale@Linux:~$ pkg-config --modversion glib-2.0
2.32.3
I am using Ubuntu 12.04 LTS
by EDDIE_THE_HEAD
Fri 07 Dec 2012, 20:16
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

thunor wrote: What you could do next is download the gtkdialog-0.8.2 source package and try that.
Well, I'm afraid I was originally running the tests on gtkdialog 0.8.2. Anyway, I'll keep you posted, see if anything comes to mind.


Cheers!! :wink:
by EDDIE_THE_HEAD
Fri 07 Dec 2012, 05:01
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

thunor wrote: Also, what happens when you wrap everything with a window widget, or a vbox and a window widget? Is the behaviour the same?

Cheers.
I had forgotten about this. Yes, I've tried wrapping the menubar with every container widget. Same results :(
by EDDIE_THE_HEAD
Fri 07 Dec 2012, 04:56
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

@EDDIE_THE_HEAD Thanks a lot for working on this. I've run the code you provided: DIALOG=' <menubar> <menu> <menuitem> <label>open</label> <action signal="show">echo showing open</action> <action signal="realize">echo realizing open</action> </menuitem> <menuitem> <label>save</l...
by EDDIE_THE_HEAD
Wed 05 Dec 2012, 20:28
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

Maybe, what does ldd `which gtkdialog` output? you could also try using a puppy built gtkdialog in ubuntu Here's the output: ale@Linux:/$ ldd `which gtkdialog` linux-gate.so.1 => (0xb7791000) libgtk-x11-2.0.so.0 => /usr/lib/i386-linux-gnu/libgtk-x11-2.0.so.0 (0xb7313000) libgdk-x11-2.0.so.0 => /usr...
by EDDIE_THE_HEAD
Wed 05 Dec 2012, 19:39
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

zigbert wrote:Any terminal output?
Nope!

My guess would be that something's wrong with either my GTK+ library or Ubuntu.
by EDDIE_THE_HEAD
Wed 05 Dec 2012, 16:50
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

in ubuntu /bin/sh is dash, so $() does not work, try changing it to backticks or the first line to #!/bin/bash It looks like Thunor has fixed some bashisms in latest source Yes, I get you, but that doesn't seem to be the problem. See this code: #!/bin/bash DIALOG=' <menubar> <menu> <menuitem> <labe...
by EDDIE_THE_HEAD
Wed 05 Dec 2012, 04:47
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

Thunor, me again :roll: So far the only widgets that have given me trouble are the menu, menubar and menuitems. My gtkdialog seems to be ignoring them completely. No matter how I define them, they won't appear in my dialogs. I've attached a screen capture for you to see. The code belongs to one of y...
by EDDIE_THE_HEAD
Tue 04 Dec 2012, 02:46
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

Re: HELP!!!

Cheers and have fun :) Thanks again!! Yes, I've had a look at some of the examples but I must confess I rather felt at a loss while trying to analyze them. Now with your explanations everything is starting to add up. I will be playing with gtkdialog for the next few days, working on some project fo...
by EDDIE_THE_HEAD
Mon 03 Dec 2012, 18:08
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

Re: HELP!!!

Regards, Thunor Thanks a lot Thunor!! You were right, I am using Ubuntu and that was exactly the problem. One last question (for now :oops: ): I understand that you can't change the content of a widget by assigning new values to their variables, but say you wanna change the content of a variable (n...
by EDDIE_THE_HEAD
Mon 03 Dec 2012, 02:48
Forum: Cutting edge
Topic: Gtkdialog Development
Replies: 838
Views: 489741

HELP!!!

Hi there! I am new to the forum, and I come seeking for help :oops: A couple of days ago I came across gtkdialog and I found it quite interesting. While tampering with it I encountered some trouble regarding variables and functions. Take this code, for example: #!/bin/bash now () { date > /tmp/date ...