mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-07 17:55:30 +00:00
5f21ba1f56
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9542 a592a061-630c-0410-9148-cb99ea01b6c8
183 lines
3.9 KiB
C
183 lines
3.9 KiB
C
/**
|
|
* \file GXpmBtnTbl.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Huang Ying
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
// Too hard to make concept checks work with this file
|
|
#ifdef _GLIBCXX_CONCEPT_CHECKS
|
|
#undef _GLIBCXX_CONCEPT_CHECKS
|
|
#endif
|
|
#ifdef _GLIBCPP_CONCEPT_CHECKS
|
|
#undef _GLIBCPP_CONCEPT_CHECKS
|
|
#endif
|
|
|
|
#include "GXpmBtnTbl.h"
|
|
|
|
#include <gtkmm.h>
|
|
|
|
#include <boost/assert.hpp>
|
|
|
|
|
|
void GXpmBtnTbl::GXpmBtn::setXpm(XpmData xpm)
|
|
{
|
|
Glib::RefPtr<Gdk::Colormap> clrmap = get_colormap();
|
|
pixmap_ = Gdk::Pixmap::create_from_xpm(clrmap,
|
|
mask_,
|
|
xpm);
|
|
Gtk::Image * image = Gtk::manage(new Gtk::Image(pixmap_, mask_));
|
|
image->show();
|
|
add(*image);
|
|
}
|
|
|
|
|
|
void GXpmBtnTbl::GXpmBtn::setXpm(Glib::RefPtr<Gdk::Pixmap> pixmap,
|
|
Glib::RefPtr<Gdk::Bitmap> mask)
|
|
{
|
|
pixmap_ = pixmap;
|
|
mask_ = mask;
|
|
Gtk::Image * image =
|
|
Gtk::manage(new Gtk::Image(pixmap_, mask_));
|
|
image->show();
|
|
add(*image);
|
|
}
|
|
|
|
|
|
GXpmBtnTbl::GXpmBtnTbl(int rows, int cols, XpmData xpms[]) :
|
|
Gtk::Table(rows, cols, true), rows_(rows), cols_(cols),
|
|
xbm_(0)
|
|
{
|
|
construct();
|
|
setBtnXpm(xpms);
|
|
}
|
|
|
|
|
|
GXpmBtnTbl::GXpmBtnTbl(int rows, int cols, XbmData const & xbm) :
|
|
Gtk::Table(rows, cols, true), rows_(rows), cols_(cols),
|
|
xbm_(&xbm)
|
|
{
|
|
construct();
|
|
}
|
|
|
|
|
|
GXpmBtnTbl::~GXpmBtnTbl()
|
|
{
|
|
}
|
|
|
|
|
|
void GXpmBtnTbl::construct()
|
|
{
|
|
BOOST_ASSERT(rows_);
|
|
BOOST_ASSERT(cols_);
|
|
btns_.reset(new GXpmBtn[rows_ * cols_]);
|
|
BOOST_ASSERT(btns_.get());
|
|
|
|
for (int row = 0; row < rows_; ++row)
|
|
for (int col = 0; col < cols_; ++col) {
|
|
GXpmBtn * btn = &btns_[index(row, col)];
|
|
btn->setRow(row);
|
|
btn->setCol(col);
|
|
btn->signalClicked().connect(signalClicked_);
|
|
btn->show();
|
|
attach(*btn, col, col + 1, row, row + 1);
|
|
}
|
|
}
|
|
|
|
|
|
void GXpmBtnTbl::setBtnXpm(XpmData xpms[])
|
|
{
|
|
for (int row = 0; row < rows_; ++row)
|
|
for (int col = 0; col < cols_; ++col)
|
|
btns_[index(row, col)].setXpm(xpms[index(row, col)]);
|
|
}
|
|
|
|
|
|
void GXpmBtnTbl::setBtnXpm(XbmData const & xbm)
|
|
{
|
|
Glib::RefPtr<Gdk::Colormap> clrmap = get_colormap();
|
|
Gdk::Color fg(const_cast<GdkColor *>(&xbm.fg_));
|
|
clrmap->alloc_color(fg);
|
|
Glib::RefPtr<Gdk::Window> window = get_window();
|
|
|
|
Glib::RefPtr<Gdk::Pixmap> pixmap = Gdk::Pixmap::create_from_data(
|
|
window,
|
|
reinterpret_cast<char const * const>(xbm.data_),
|
|
xbm.width_,
|
|
xbm.height_,
|
|
window->get_depth(),
|
|
fg,
|
|
get_style()->get_bg(Gtk::STATE_NORMAL));
|
|
|
|
Glib::RefPtr<Gdk::Bitmap> mask = Gdk::Bitmap::create(
|
|
window,
|
|
reinterpret_cast<char const * const>(xbm.data_),
|
|
xbm.width_,
|
|
xbm.height_);
|
|
|
|
|
|
|
|
Glib::RefPtr<Gdk::GC> gc = Gdk::GC::create(mask);
|
|
int const btnWidth = xbm.width_ / cols_;
|
|
int const btnHeight = xbm.height_ / rows_;
|
|
for (int row = 0; row < rows_; ++row)
|
|
for (int col = 0; col < cols_; ++col) {
|
|
Glib::RefPtr<Gdk::Pixmap> pixmapBtn =
|
|
Gdk::Pixmap::create(
|
|
window,
|
|
btnWidth,
|
|
btnHeight,
|
|
window->get_depth());
|
|
pixmapBtn->draw_drawable(get_style()->get_black_gc(),
|
|
pixmap,
|
|
col * btnWidth,
|
|
row * btnHeight,
|
|
0,
|
|
0,
|
|
btnWidth,
|
|
btnHeight);
|
|
Glib::RefPtr<Gdk::Bitmap> maskBtn =
|
|
Gdk::Bitmap::create(
|
|
window,
|
|
reinterpret_cast<char const * const>(xbm.data_),
|
|
btnWidth,
|
|
btnHeight);
|
|
maskBtn->draw_drawable(gc,
|
|
mask,
|
|
col * btnWidth,
|
|
row * btnHeight,
|
|
0,
|
|
0,
|
|
btnWidth,
|
|
btnHeight);
|
|
btns_[index(row, col)].setXpm(pixmapBtn, maskBtn);
|
|
}
|
|
}
|
|
|
|
|
|
void GXpmBtnTbl::on_realize()
|
|
{
|
|
Gtk::Table::on_realize();
|
|
if (!xbm_)
|
|
return;
|
|
setBtnXpm(*xbm_);
|
|
}
|
|
|
|
|
|
void buttonSetXpm(Gtk::Button * btn, char const ** xpm)
|
|
{
|
|
Glib::RefPtr<Gdk::Colormap> clrmap = btn->get_colormap();
|
|
|
|
Glib::RefPtr<Gdk::Bitmap> mask;
|
|
Glib::RefPtr<Gdk::Pixmap> pixmap =
|
|
Gdk::Pixmap::create_from_xpm(clrmap, mask, xpm);
|
|
Gtk::Image * image = Gtk::manage(new Gtk::Image(pixmap, mask));
|
|
image->show();
|
|
btn->add(*image);
|
|
}
|