Tagged Questions
Window Manager is a service in almost all modern OSs which is responsible for drawing UI for the software running on that particular OS.
8
votes
8answers
963 views
Mono winforms app fullscreen in Ubuntu?
Just wondering if there's a known way of getting a Mono System.Windows.Forms application to go fullscreen on Ubuntu/Gnome.
Mono is 2.4.2.3
Ubuntu is 9.10
Doing it on Windows requires a pinvoke, ...
8
votes
12answers
2k views
Lightweight X window manager/environment
My machine is seriously underpowered, and I think I need to start conserving every spare cycle. I know that my Gnome environment seems to underperform compared to my coworkers' KDE setups. But if ...
6
votes
1answer
369 views
Modern ways to write a window manager
I'm trying to write a window manager. (Actually, I have written an OS and a compiler, but that's beside the point.)
XLib and xcb aren't exactly nasty, at least not by, say, win32 standards, but they ...
6
votes
7answers
1k views
Creating a window manager for Linux
I want to create a simple stacking window manager (in C) for private use, mainly for the purpose of learning and challenging myself.
I've looked through twm's source code which has relatively few ...
6
votes
4answers
2k views
Building a Window Manager
One of my new home projects will be a simple Window Manager, but before start I need to know some things:
Which is the best language to do this?
Where to get some resources to learn?
4
votes
2answers
372 views
minimize fullscreen Xlib OpenGL Window
I'm currently trying to enable alt-tabbing out of my fullscreen Xlib OpenGL window, but am having some difficulties. I've tried XUnmapWindow(..), which kindof works, but the resolution does not reset ...
4
votes
2answers
3k views
How do I toggle 'always on top' for a QMainWindow in Qt?
void MainWindow::on_actionAlways_on_Top_triggered(bool checked)
{
Qt::WindowFlags flags = this->windowFlags();
if (checked)
{
this->setWindowFlags(flags | ...
4
votes
4answers
203 views
Name of window manager for Windows
i have a simple question,
i search the exact name of the window manager for Windows.
For Unix : X Window System
Mac : Quartz
Windows : ?
Thanks you.
3
votes
0answers
140 views
Windowmanager with Animation
First of all thanks everyone who tries to reply this topic.
I have an activity and I wanted to show a sort of menu at the top of the screen and I used windowmanager to handle this. it was about UI ...
3
votes
2answers
50 views
How do I reveal a file as “selected” in *nix from the command line?
Is there a semi-universal mechanism by which to reveal files as selected in various *nix window managers via the command line? For example, in Windows I can say the following:
explorer.exe ...
3
votes
1answer
562 views
Xlib How Does This (Removing Window Decoration) Work?
How does the following code remove window borders?
//note the struct is declared elsewhere, is here just for clarity.
//code is from [http://tonyobryan.com/index.php?article=9][1]
typedef struct ...
3
votes
2answers
705 views
Java: Replacing the coffee cup icon in the top-left corner of the Window
Java Swing applications by default have the Java coffee cup icon appear in the top left corner of the application.
I would like to replace this with my own image - what API is used?
Can this be done ...
3
votes
3answers
479 views
How do I properly implement a “minimize to tray” function in Qt?
How do I properly implement a "minimize to tray" function in Qt?
I tried the following code inside QMainWindow::changeEvent(QEvent *e), but the window simply minimizes to the taskbar and the client ...
3
votes
1answer
577 views
How do I stop/workaround Java apps stealing focus in Linux window managers
We want to quickly prototype widgets in Java. We overlay them on top of a display written in a proprietary 3rd party graphics package. We find that the Java GUI steals keyboard focus away from the ...
3
votes
4answers
2k views
(Ruby || Python) window manager
I want to make a window manager in either of these languages (Preferably ruby). I honestly have no idea where to start except that I will need some kind of X module to load. So if anyone has a clue it ...
3
votes
6answers
477 views
What cutting edge desktop environments are out there?
Gnome, KDE, Fluxbox, IceWM, XFce, etc. etc. These are desktop environments/window managers that have been around a long time.
I'd love to know about some of the 'cutting edge' desktop ...
2
votes
1answer
44 views
Is XCB ready for production use? Should I use Xlib instead?
If one needs low level access to X11 events, windowing and input without using GTK, QT et al., should one use Xlib or XCB? What are the pros and cons of each?
2
votes
1answer
57 views
Writing correct JFrames for all Window Manager
What is the correct way to display a Java JFrame Window on Linux (and here under different Window Managers), Mac and Windows allways in the same way?
We have actually some trouble with a JFrame, that ...
2
votes
0answers
34 views
Animate view added on WindowManager
I have a view (customView) added to the WindowManager.
WindowManager mWm = (WindowManager)activity.getApplicationContext().getSystemService(Context.WINDOW_SERVICE);
...
2
votes
1answer
122 views
Desktop Environment in Ruby
I want to create a very simple window manager for Ubuntu using Ruby. Where should I start?
I am somewhat familiar with Qt (from when I used to use C++), but I don't mind using other frameworks.
2
votes
2answers
206 views
python wnck not returning any data until after a pdb.set_trace()
On Ubuntu Linux / Gnome, I am trying to use python's wnck binding to get a list of all the open windows.
My code looks like this:
#! /usr/bin/python
from pprint import pprint
import wnck
screen = ...
2
votes
3answers
325 views
Linux: list all available window managers
How do I get a list of all available windows managers on a linux system (Of course this would mostly not be needed but - I don't have root permissions).
Very difficult to search on Google as all ...
2
votes
3answers
1k views
Active windows in Windows and QWidget::activateWindow()
The Qt documentation for QWidget::activateWindow() states:
On Windows, if you are calling this
when the application is not currently
the active one then it will not make
it the active ...
2
votes
1answer
838 views
OSX Quartz Event Taps: event types and how to edit events
Here's my code:
#import <ApplicationServices/ApplicationServices.h>
CGEventRef myCGEventCallback(CGEventTapProxy proxy, CGEventType type, CGEventRef event, void *refcon) {
printf("%u\n", ...
1
vote
2answers
41 views
Android Gallery Image onTouch to fit screeen
I am developing application having a resemblance appearance like " Gallery application".
When I click on image from the gallery... I want to fit image to whole screen..
I used this code..but it does ...
1
vote
1answer
52 views
is it possible to assign a window id when launching a program from shell?
If you do xwininfo it will give you the window id, however, this requires clicking the mouse over a target window. Is there any way to force the window manager, or at least suggest to the window ...
1
vote
1answer
167 views
What should a Window Manager do with a ConfigureRequestEvent?
For my sins (and for fun the learning experience) I am writing a window manager (I know, I know).
I'm using python and XCB (python-xpyb).
So far I have figured out that I need to use a ...
1
vote
1answer
125 views
Good ways to monitor user “behavior” in Python?
I'm looking for easy APIs to get informations about the user use of his computer in Python.
What would be relevant:
Keypresses, mouse events [PyKeylogger?] # I know this has been debated in SO ...
1
vote
1answer
225 views
Manipulate window size in linux via compiled code?
I wrote a couple of scripts to maximize a window to half the size of the screen (to make it easy to place windows side-by-side) using xrandr, grep, and wmctrl as follows:
#!/bin/bash
w=`xrandr 2> ...
1
vote
6answers
186 views
Developing a simple windowed app for Linux
Okay, I'd like to write a simple C app for Linux (say Ubuntu with Gnome) that would do the following:
Open a Window
Draw something in that window using a main loop, e.g. the current loop number. I ...
1
vote
1answer
424 views
Web Window Manager (UI Framework)
I'm interested in putting together a web framework to emulate a desktop-like window manager. If you're asking why; the reason is that I want to create a web application that has the capabilities and ...
1
vote
1answer
112 views
How can I find out or record the X11 top-level window from which a top-level window was opened?
I'm thinking of writing an X11 window manager which does for windows something like what TabKit does for tabs in Firefox (in its default tree view mode). To do this, I'd need to be to able to find out ...
1
vote
0answers
242 views
Ugly swing fonts under ratpoison
I am writing a small application in swing. I am using Ratpoison as my window manager (with wmname LG3D) and Netbeans as IDE. My application fonts when started from KDE or directly from Netbeans look ...
1
vote
3answers
675 views
Coding a GTK+ application without window manager?
I want to code sth. that basically works like TiVo. Switch it on, you only see the menu or an output, so no underlying OS or anything else is directly visible to the user.
So I want to use Linux as ...
1
vote
1answer
122 views
Is there a way to enumerate the open windows on Mac and X11?
Basically, I am looking for something like Win32's EnumChildWindows on Mac and X11, which takes a handle to a window and returns a list of its child windows.
1
vote
1answer
332 views
How do I find a window at a certain point on the screen for screenshot/screen-recording purposes?
The title says it all. I'm looking for a way to do what the equivalent of WindowFromPoint and GetWindowRect do, in Carbon/Cocoa and X11.
WindowFromPoint - ...
1
vote
1answer
40 views
Fluxbox compiling problems after making a change
I'm trying to make the change here: http://fluxbox-wiki.org/index.php?title=Howto_Make_dblclick_titlebar_maximize
I am using the current git version of the fluxbox source.
I assume that those ...
1
vote
1answer
585 views
Moving a window between workspaces/virtual desktops
I have a Linux-only wxPython application with a wxFrame that acts as a menu/toolbar, it can open up new windows that are independent of the toolbar itself.
Since the user can move any of these ...
1
vote
2answers
639 views
Find the name of the X window manager
How do I find the name of the running X window window manager from a program?
If I start another window manager when one is already running, then an error occurs, so there must be a way for the other ...
1
vote
3answers
297 views
Xorg loading an image
I'm starting to code up my own window manager, and was wondering how to use the xorg api to get from raw image data ( such as the data given by libpng ), into an Xorg Pixmap or something drawable by ...
1
vote
2answers
268 views
Window short cuts for XFCE4
This is not a programming question per se, but this is certainly about something which would help increasing my programming productivity.
In KDE, one can assign short-cuts to particular windows. This ...
0
votes
1answer
47 views
Writing Tiling window manager in Python
I have been using Awesome Tiling window manager for over 6 months now, and quite happy with this.
I would like to write my own Tiling window manager as a weekend project and for hackfun. I noticed ...
0
votes
0answers
36 views
ShowAlertDialog on WindowManager
I have a customView added on the WindowManager
WindowManager mWm = (WindowManager)activity.getApplicationContext().getSystemService(Context.WINDOW_SERVICE);
mWm.addView(customView, mWl);
When ...
0
votes
0answers
21 views
Does Window Grouping Render In-Application Tabs Irrelevent?
As you all probably know, it's currently very much in vogue for window managers and desktop environments to merge windows from the same app into a single entity.
Windows 7, Unity, and OS X all do it ...
0
votes
1answer
61 views
What is the Tk command which does the same as clicking on the x button of a window?
There are command like wm minimize *window* and wm maximize *window* which minimize and maximize the window respectively, but there is nothing like wm exit *window*.
I need a Tk command which does ...
0
votes
0answers
36 views
Resize with _NET_WM_MOVERESIZE
I am writing my own window manager using Xlib and Qt 4.7. I catch "ClientMessage" event and when I receive _NET_WM_MOVERESIZE atom, start a resizing/moving of window(depends on data inside of atom).
I ...
0
votes
1answer
78 views
Window manager. Internal content of X windows in separate window?
I am writing my own Window Manager using Xlib and Qt 4.7. So in my application I catch all events from XServer.
The problem is next. When I show window on "MapRequest" event, sometimes its internal ...
0
votes
1answer
33 views
Can you set the window title for a java application as a command line parameter?
I've started using a Ubuntu desktop in my new workplace and the window manager doesn't manage java applications very well. They are all treated as one application, no icons or names to recognise them ...
0
votes
0answers
60 views
qt menu item does not show
I'm writing a window manager and I'm stuck with a problem on Qt4 menu bar elements.
When I first click on the menu item, it shows correctly, then I close it and try to open it again but it does not ...
0
votes
1answer
252 views
How to call getWindow() using a method from a listener
I'm using getwindow to set a lot of stuff at the beginning of bunch of my activities within my onCreate. I would like to replace this with a method like the following:
public static void ...