Sponsored Content
Top Forums Programming A Slideshow Screensaver Using C, Gtk+ & Gdk Post 78962 by kevin1 on Saturday 23rd of July 2005 04:44:21 AM
Old 07-23-2005
A Slideshow Screensaver Using C, Gtk+ & Gdk

Yes, I know I am re-inventing the wheel, but I thought this would be an interesting exercise for teaching myself C under Ubuntu Linux and Gnome.

I want a black background against which the .jpg images will be shown. I also want the screensaver to respond to keyboard events so that it can do various things depending on which key is pressed.

The only way I have discovered of getting a completely black background is with a GTK_WINDOW_POPUP, which is displayed independently of the window manager and so hides the Gnome top & bottom panels.

I then use a GTK_WINDOW_TOPLEVEL with gtk_window_set_decorated = FALSE to display the images without borders.

This second window sucessfully receives keyboard events ... but is unfortunately invisible, presumably because the window manager displays it under the black GTK_WINDOW_POPUP. I have tried various things to get the desired result, but without success.

Can anyone suggest a method of achieving my aim? I would prefer to work at the GTK / GDK levels rather than at the Xwindow level.

Code follows:

Code:
/* Declare widgets etc.
-----------------------*/

/* black background window */
GtkWindow *window_bg;
GdkPixbuf *pixbuf_bg;
GtkWidget *picture_bg;

/* image display window */
GtkWindow *window;
GdkPixbuf *pixbuf;
GtkWidget *picture;


int main(int argc, char **argv)
{
/* Initialise GTK+ */ gtk_init(&argc, &argv); /* ***** Create & display black background *******/ window_bg = GTK_WINDOW(gtk_window_new(GTK_WINDOW_POPUP)); pixbuf_bg = gdk_pixbuf_new (GDK_COLORSPACE_RGB, FALSE, 8, 1280, 1024); /* default black pixbuf */ picture_bg=gtk_image_new_from_pixbuf(pixbuf_bg); gtk_container_add(GTK_CONTAINER(window_bg), GTK_WIDGET(picture_bg)); gtk_widget_show_all(GTK_WIDGET(window_bg)); /* ***** Create photo display ******/ window = GTK_WINDOW(gtk_window_new(GTK_WINDOW_TOPLEVEL)); pixbuf = gdk_pixbuf_new_from_file_at_scale("test.jpg", 1280, 1024, TRUE, NULL); picture=gtk_image_new_from_pixbuf(pixbuf); /* signal handlers would be here */ /* pack the image into the window & display */ gtk_container_add(GTK_CONTAINER(window), GTK_WIDGET(picture)); gtk_widget_show_all(GTK_WIDGET(window)); /* Set window to have no border etc. */ gtk_window_set_decorated(window, FALSE); /* Start main event loop */ gtk_main(); return 0;
}

Thanks,

Kevin
 

4 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Screensaver and 'fortune'

(SuSE Linux 8.2 Personal) I'm sure the answer to this will be simple, but it's been driving me insane for the last couple days. SuSE 8.2 comes with a bunch of screensavers, but a handful of them just repeatedly display 'sh: line 1: fortune: command not found'. I've been scouring endlessly... (4 Replies)
Discussion started by: Darkstripes
4 Replies

2. Solaris

ScreenSaver issue with Solaris 10

I have a Dell Vostro running Solaris 10 x86 and I am trying to get it to activate the screensaver when no one is logged it. However, the screensaver only seems to activate when someone logs in and then the computer locks. How would I go about fixing this problem? Any help yall can offer would be... (3 Replies)
Discussion started by: MajorJRO
3 Replies

3. UNIX for Dummies Questions & Answers

ScreenSaver into Background Question

(Keeping in mind I know very little about Unix...) When I am typing this out (without copy-pasting the whole thing) to get my screensaver onto my background: /System/Library/Frameworks/ScreenSaver.framework/Resources/ScreenSaverEngine.app/Contents/MacOS/ScreenSaverEngine -background I... (3 Replies)
Discussion started by: wat_up_m
3 Replies

4. UNIX and Linux Applications

Slideshow with ffmpeg converter

Hi, everyone! I'm on a Debian 9.0 GNU/Linux machine. I'm not a very experienced user, but I do my best to learn. So, I have a bunch of images PNG files. I'm trying to make a slideshow with these using the ffmpeg video converter. I also have an audio WAVE stereo file which I'd like to merge... (0 Replies)
Discussion started by: worov
0 Replies
focus(n)						       Tk Built-In Commands							  focus(n)

__________________________________________________________________________________________________________________________________________________

NAME
focus - Manage the input focus SYNOPSIS
focus focus window focus option ?arg arg ...? _________________________________________________________________ DESCRIPTION
The focus command is used to manage the Tk input focus. At any given time, one window on each display is designated as the focus window; any key press or key release events for the display are sent to that window. It is normally up to the window manager to redirect the focus among the top-level windows of a display. For example, some window managers automatically set the input focus to a top-level window when- ever the mouse enters it; others redirect the input focus only when the user clicks on a window. Usually the window manager will set the focus only to top-level windows, leaving it up to the application to redirect the focus among the children of the top-level. Tk remembers one focus window for each top-level (the most recent descendant of that top-level to receive the focus); when the window man- ager gives the focus to a top-level, Tk automatically redirects it to the remembered window. Within a top-level Tk uses an explicit focus model by default. Moving the mouse within a top-level does not normally change the focus; the focus changes only when a widget decides explicitly to claim the focus (e.g., because of a button click), or when the user types a key such as Tab that moves the focus. The Tcl procedure tk_focusFollowsMouse may be invoked to create an implicit focus model: it reconfigures Tk so that the focus is set to a window whenever the mouse enters it. The Tcl procedures tk_focusNext and tk_focusPrev implement a focus order among the windows of a top- level; they are used in the default bindings for Tab and Shift-Tab, among other things. The focus command can take any of the following forms: focus Returns the path name of the focus window on the display containing the application's main window, or an empty string if no window in this application has the focus on that display. Note: it is better to specify the display explicitly using -displayof (see below) so that the code will work in applications using multiple displays. focus window If the application currently has the input focus on window's display, this command resets the input focus for window's display to window and returns an empty string. If the application does not currently have the input focus on window's display, window will be remembered as the focus for its top-level; the next time the focus arrives at the top-level, Tk will redirect it to window. If window is an empty string then the command does nothing. focus -displayof window Returns the name of the focus window on the display containing window. If the focus window for window's display is not in this application, the return value is an empty string. focus -force window Sets the focus of window's display to window, even if the application does not currently have the input focus for the display. This command should be used sparingly, if at all. In normal usage, an application should not claim the focus for itself; instead, it should wait for the window manager to give it the focus. If window is an empty string then the command does nothing. focus -lastfor window Returns the name of the most recent window to have the input focus among all the windows in the same top-level as window. If no window in that top-level has ever had the input focus, or if the most recent focus window has been deleted, then the name of the top-level is returned. The return value is the window that will receive the input focus the next time the window manager gives the focus to the top-level. QUIRKS
When an internal window receives the input focus, Tk does not actually set the X focus to that window; as far as X is concerned, the focus will stay on the top-level window containing the window with the focus. However, Tk generates FocusIn and FocusOut events just as if the X focus were on the internal window. This approach gets around a number of problems that would occur if the X focus were actually moved; the fact that the X focus is on the top-level is invisible unless you use C code to query the X server directly. EXAMPLE
To make a window that only participates in the focus traversal ring when a variable is set, add the following bindings to the widgets before and after it in that focus ring: button .before -text "Before" button .middle -text "Middle" button .after -text "After" checkbutton .flag -variable traverseToMiddle -takefocus 0 pack .flag -side left pack .before .middle .after bind .before <Tab> { if {!$traverseToMiddle} { focus .after break } } bind .after <Shift-Tab> { if {!$traverseToMiddle} { focus .before break } } focus .before KEYWORDS
events, focus, keyboard, top-level, window manager Tk 4.0 focus(n)
All times are GMT -4. The time now is 08:43 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy