mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
02e9472374
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5347 a592a061-630c-0410-9148-cb99ea01b6c8
93 lines
1.8 KiB
C++
93 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file xforms/Toolbar_pimpl.h
|
|
* Copyright 1996-2001 Lars Gullik Bjønnes
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef TOOLBAR_PIMPL_H
|
|
#define TOOLBAR_PIMPL_H
|
|
|
|
#include <vector>
|
|
#include "forms_fwd.h"
|
|
|
|
#include "frontends/Toolbar.h"
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
class XFormsView;
|
|
class Tooltips;
|
|
class Combox;
|
|
|
|
/** The LyX xforms toolbar class
|
|
*/
|
|
struct Toolbar::Pimpl {
|
|
public:
|
|
/// called when user selects a layout from combox
|
|
static void layoutSelectedCB(int, void *, Combox *);
|
|
|
|
/// create an empty toolbar
|
|
Pimpl(LyXView * o, int x, int y);
|
|
|
|
~Pimpl();
|
|
|
|
/// add a new button to the toolbar.
|
|
void add(int action);
|
|
|
|
/// update the state of the icons
|
|
void update();
|
|
|
|
/// select the right layout in the combox
|
|
void setLayout(string const & layout);
|
|
/// Populate the layout combox; re-do everything if force is true.
|
|
void updateLayoutList(bool force);
|
|
/// Drop down the layout list
|
|
void openLayoutList();
|
|
/// Erase the layout list
|
|
void clearLayoutList();
|
|
/// the non-static version of layoutSelectedCB
|
|
void layoutSelected();
|
|
|
|
/// an item on the toolbar
|
|
struct toolbarItem
|
|
{
|
|
toolbarItem();
|
|
|
|
~toolbarItem();
|
|
|
|
toolbarItem & operator=(toolbarItem const & ti);
|
|
|
|
/// deallocate icon
|
|
void kill_icon();
|
|
|
|
/// lyx action number
|
|
int action;
|
|
/// icon for this item
|
|
FL_OBJECT * icon;
|
|
};
|
|
|
|
typedef std::vector<toolbarItem> ToolbarList;
|
|
|
|
/// The list containing all the buttons
|
|
ToolbarList toollist_;
|
|
/// owning view
|
|
XFormsView * owner_;
|
|
/// tooltips manager
|
|
Tooltips * tooltip_;
|
|
/// layout combo
|
|
Combox * combox_;
|
|
/// x position of end of toolbar
|
|
int xpos;
|
|
/// y position of end of toolbar
|
|
int ypos;
|
|
};
|
|
|
|
#endif // TOOLBAR_PIMPL_H
|