Tagged Questions
The desktop-wallpaper tag has no wiki summary.
4
votes
3answers
1k views
Changing wallpaper on Linux programmatically
How would I change the wallpaper on a Linux desktop (using GNOME) within a C/C++ program? Is there a system API to do it?
3
votes
3answers
248 views
How does one detect when the wallpaper has changed (Windows XP or greater)?
I have figured out how to change the desktop wallpaper (there are dozens of examples on the Internet.)
One thing that still eludes me: how do I detect when the wallpaper has changed? (Say via the ...
3
votes
6answers
540 views
Windows wallpaper: not just BMPs?
I've read in a couple of places that the desktop wallpaper can be set to an HTML document. Has anyone had any success changing it programmatically?
The following snippet of VB6 helps me set things ...
1
vote
1answer
347 views
Programmatically changing desktop image
-(IBAction)click:(id)sender
{
NSData *sourceData;
NSError *error;
NSFileManager *filemgr;
filemgr = [NSFileManager defaultManager];
screenArray = [NSScreen screens];
...
1
vote
0answers
193 views
desktop wallpaper [closed]
Possible Duplicate:
Programmatically changing desktop image
Hi,
I want to set the image as the wallpaper through cocoa program. I have to set the dynamically downloaded images as the ...
1
vote
1answer
269 views
different wallpaper for each screen for multi-monitor setups in Windows
I'm using
SPI_SETDESKWALLPAPER = 20
ctypes.windll.user32.SystemParametersInfoA(SPI_SETDESKWALLPAPER, 0, "picturefile" , 0)
to change the wallpaper
But I'm wondering if there's any simple ...
1
vote
2answers
2k views
Change wallpaper programmatically using c++ and windows api
I've been trying to write an application, using Qt and mingw32, to download images and set them as the background Wallpaper. I have read several articles online about how to do this, in VB and C#, and ...
1
vote
8answers
18k views
Best Computer Or Programming Wallpapers [closed]
Post links to your best computer or programming wallpapers!
1
vote
2answers
492 views
Formula or API for calulating desktop icon spacing on Windows XP
I've built a simple application that applies grid-lines to an image or just simple colors for use as desktop wallpaper. The idea is that the desktop icons can be arranged within the grid. The problem ...
0
votes
0answers
49 views
WallpaperManager crops images
I'm having the same problem as this poster who is trying to set the desktop wallpaper using code. I noticed no answers to that posting.
Android WallpaperManager crops image
Could you tell me the ...
0
votes
2answers
103 views
android wallpaper changed
Hi I set a android wallpaper through bitmap.
But Now I want to remove this .How can I remove this??
Can anyone have better Idea.I try wallpaper.clear(); but it is not working .
SO please Help me .
...
0
votes
1answer
742 views
Shell script changing desktop wallpaper
could you write the easist possible shell script that will change the desktop wallpaper (in Ubuntu) in regular interwalls (e.g. 1 minute). wallpapers will be saved in particular directory (e.g. ...
0
votes
1answer
314 views
Get home wallpaper and set it to my activity
I want to get the home wallpaper set and put it as my background for my activity. Is this possible ?
I searched on the internet with
WallpaperInfo v = w.getWallpaperInfo();
String name = ...
0
votes
1answer
319 views
C# - Multiple Desktop Wallpaper App - Logic Problems
I'm currently tearing my hair out with this problem.
Where I'm up to:
I can
Generate an image for each screen
Create a mega-image for two screens next to each other.
Setting this as a tiled ...
0
votes
1answer
350 views
Where is the location of the OS X 10.5 user wallpaper
I was just wondering where the /File/System/Location/ of a users current wallpaper is stored in OS X 10.5. Something like how the default login windows wallpaper is stored at ...
0
votes
2answers
805 views
How to write a Windows application to change the desktop wallpaper?
I would like to write a small Windows application which changes the desktop wallpaper based on photographs retrieved from a web service ? How should I go about this ? Which language / technology would ...