diff options
author | fluxgen <fluxgen> | 2004-01-11 12:48:46 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2004-01-11 12:48:46 (GMT) |
commit | abe0204256a567799ea7f97db64e1153c5578660 (patch) | |
tree | 8e4399efddbb1fe294f2f8244b2accff3fd97aaa /src/FbTk/FbPixmap.cc | |
parent | 135579a9bfa6a23a1fd8217ae15ea4d4937fbf59 (diff) | |
download | fluxbox-abe0204256a567799ea7f97db64e1153c5578660.zip fluxbox-abe0204256a567799ea7f97db64e1153c5578660.tar.bz2 |
FbDrawable in constructor
Diffstat (limited to 'src/FbTk/FbPixmap.cc')
-rw-r--r-- | src/FbTk/FbPixmap.cc | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/FbTk/FbPixmap.cc b/src/FbTk/FbPixmap.cc index edc0e53..bbc8fcb 100644 --- a/src/FbTk/FbPixmap.cc +++ b/src/FbTk/FbPixmap.cc | |||
@@ -19,7 +19,7 @@ | |||
19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 19 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
20 | // DEALINGS IN THE SOFTWARE. | 20 | // DEALINGS IN THE SOFTWARE. |
21 | 21 | ||
22 | // $Id: FbPixmap.cc,v 1.9 2004/01/08 22:05:34 fluxgen Exp $ | 22 | // $Id: FbPixmap.cc,v 1.10 2004/01/11 12:48:46 fluxgen Exp $ |
23 | 23 | ||
24 | #include "FbPixmap.hh" | 24 | #include "FbPixmap.hh" |
25 | #include "App.hh" | 25 | #include "App.hh" |
@@ -50,6 +50,15 @@ FbPixmap::FbPixmap(Pixmap pm):m_pm(0), | |||
50 | (*this) = pm; | 50 | (*this) = pm; |
51 | } | 51 | } |
52 | 52 | ||
53 | FbPixmap::FbPixmap(const FbDrawable &src, | ||
54 | unsigned int width, unsigned int height, | ||
55 | int depth):m_pm(0), | ||
56 | m_width(0), m_height(0), | ||
57 | m_depth(0) { | ||
58 | |||
59 | create(src.drawable(), width, height, depth); | ||
60 | } | ||
61 | |||
53 | FbPixmap::FbPixmap(Drawable src, | 62 | FbPixmap::FbPixmap(Drawable src, |
54 | unsigned int width, unsigned int height, | 63 | unsigned int width, unsigned int height, |
55 | int depth):m_pm(0), | 64 | int depth):m_pm(0), |