~onli/simdock/master

« back to all changes in this revision

Viewing changes to src/background.cc

  • Committer: onli
  • Date: 2011-07-07 12:24:23 UTC
  • Revision ID: git-v1:96c327bf55055eb2a7070d498dbcbf04f309221c
moved sources from unstable-svn-branch to here

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *   Copyright 2007 Simone Della Longa <simonedll@yahoo.it>
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or
 
7
 *  (at your option) any later version.
 
8
 *
 
9
 *  This program is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *  GNU General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 */
 
18
#include "background.h"
 
19
 
 
20
using namespace std;
 
21
 
 
22
//get the currently used background 
 
23
wxBitmap* getRootWallpaper()
 
24
{
 
25
    wxBitmap* backImage = new wxBitmap();
 
26
    WnckScreen *screen = wnck_screen_get_default ();
 
27
 
 
28
    Pixmap pm = wnck_screen_get_background_pixmap(screen);
 
29
    int i = 0;
 
30
    while(i < 5)
 
31
    {
 
32
        if (pm != None) {
 
33
            break;
 
34
        }
 
35
        wxMilliSleep(1000);
 
36
        pm  = wnck_screen_get_background_pixmap(screen);
 
37
        i++;
 
38
    }
 
39
    
 
40
    if (pm != None) {
 
41
        backImage->SetPixmap(
 
42
                            gdk_pixmap_foreign_new(
 
43
                                pm
 
44
                                )
 
45
                            );
 
46
    } else {
 
47
        wxSize sz = wxGetDisplaySize();
 
48
        backImage = new wxBitmap (sz.GetWidth(), sz.GetHeight());
 
49
        wxMemoryDC dc;
 
50
        dc.SelectObject(*backImage);
 
51
        dc.SetBackground(*wxTRANSPARENT_BRUSH);
 
52
        dc.Clear();
 
53
        dc.SelectObject(*backImage);
 
54
    }
 
55
    return backImage;
 
56
}
 
57
 
 
58
wxBitmap *fixImage (wxString url, int type, wxColour c)
 
59
{
 
60
  if (url.IsEmpty ())
 
61
    return NULL;
 
62
 
 
63
  wxImage img = wxImage (url); 
 
64
  wxSize sz = wxGetDisplaySize();
 
65
  int w = sz.GetWidth();
 
66
  int h = sz.GetHeight();
 
67
  printf ("Image size:%d,%d Screen size:%d,%d\n", img.GetWidth (),
 
68
          img.GetHeight (), w, h);
 
69
  // cout << wx2std(c.GetAsString(wxC2S_HTML_SYNTAX)) <<endl;
 
70
  switch (type)
 
71
    {
 
72
    case STRETCHED:
 
73
      return new wxBitmap (img.Scale (w, h, wxIMAGE_QUALITY_HIGH));
 
74
      break;
 
75
    case CENTERED:
 
76
      int x, y;
 
77
      if (img.GetWidth () > w)
 
78
        x = 0;
 
79
      else
 
80
        x = (w - img.GetWidth ()) / 2;
 
81
      if (img.GetHeight () > h)
 
82
        y = 0;
 
83
      else
 
84
        y = (h - img.GetHeight ()) / 2;
 
85
 
 
86
 
 
87
      img.Resize (wxSize (w, h), wxPoint (x, y), c.Red (), c.Green (),
 
88
                  c.Blue ());
 
89
      return new wxBitmap (img);
 
90
      break;
 
91
    default:
 
92
      return new wxBitmap (img);
 
93
      break;
 
94
 
 
95
    }
 
96
 
 
97
  return NULL;
 
98
}