2002-03-11 17:00:41 +00:00
|
|
|
// -*- C++ -*-
|
2001-11-05 17:07:23 +00:00
|
|
|
/**
|
|
|
|
* \file DropDown.h
|
|
|
|
* Copyright 2001 the LyX Team
|
|
|
|
* Read the file COPYING
|
|
|
|
*
|
2002-03-11 17:00:41 +00:00
|
|
|
* \author John Levon, moz@compsoc.man.ac.uk
|
2001-11-05 17:07:23 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DROPDOWN_H
|
|
|
|
#define DROPDOWN_H
|
|
|
|
|
2002-03-11 17:00:41 +00:00
|
|
|
#ifdef __GNUG_
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2001-11-05 17:07:23 +00:00
|
|
|
#include "LyXView.h"
|
|
|
|
#include <sigc++/signal_system.h>
|
|
|
|
#include "LString.h"
|
|
|
|
#include FORMS_H_LOCATION
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class DropDown {
|
|
|
|
public:
|
|
|
|
/// constructor
|
|
|
|
DropDown(LyXView * lv, FL_OBJECT * ob);
|
|
|
|
/// destructor
|
|
|
|
~DropDown();
|
|
|
|
|
|
|
|
/// choose from the list of choices.
|
|
|
|
void select(std::vector<string> const & choices, int x, int y, int w);
|
|
|
|
|
|
|
|
/// user completed action
|
|
|
|
void completed();
|
2002-01-14 12:47:17 +00:00
|
|
|
|
|
|
|
/// a key was pressed. Act on it.
|
|
|
|
void key_pressed(char c);
|
|
|
|
|
2001-11-05 17:07:23 +00:00
|
|
|
/// signal for completion
|
|
|
|
SigC::Signal1<void, string const &> result;
|
|
|
|
|
2002-01-14 12:47:17 +00:00
|
|
|
/// signal that a key was pressed
|
|
|
|
SigC::Signal1<void, char> keypress;
|
|
|
|
|
2001-11-05 17:07:23 +00:00
|
|
|
/// X event
|
|
|
|
int peek(XEvent *);
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// move up a browser line
|
|
|
|
void line_up();
|
|
|
|
|
|
|
|
/// move down a browser line
|
|
|
|
void line_down();
|
|
|
|
|
|
|
|
/// owning lyxview
|
|
|
|
LyXView * lv_;
|
|
|
|
|
|
|
|
/// our form
|
|
|
|
FL_FORM * form_;
|
|
|
|
|
|
|
|
/// the browser
|
|
|
|
FL_OBJECT * browser_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DROPDOWN_H
|