lyx_mirror/src/frontends/xforms/Toolbar_pimpl.h
Lars Gullik Bjønnes e5ed2c26f5 better lib building
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6950 a592a061-630c-0410-9148-cb99ea01b6c8
2003-05-08 18:05:07 +00:00

93 lines
1.9 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"
#include "ToolbarBackend.h"
class XFormsView;
class Tooltips;
/** The LyX xforms toolbar class
*/
struct Toolbar::Pimpl {
public:
/// create an empty toolbar
Pimpl(LyXView * o, int x, int y);
~Pimpl();
/// add a new toolbar
void add(ToolbarBackend::Toolbar const & tb);
/// add an item to a toolbar
void add(int action, string const & tooltip);
/// display toolbar, not implemented
void displayToolbar(ToolbarBackend::Toolbar const & tb, bool show);
/// 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();
///
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
FL_OBJECT * combox_;
/// x position of end of toolbar
int xpos;
/// y position of end of toolbar
int ypos;
};
#endif // TOOLBAR_PIMPL_H