mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
c6b932f467
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17994 a592a061-630c-0410-9148-cb99ea01b6c8
44 lines
768 B
C++
44 lines
768 B
C++
// -*- C++ -*-
|
|
/**
|
|
* \file qt4/GuiSelection.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author unknown
|
|
* \author John Levon
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef SELECTION_H
|
|
#define SELECTION_H
|
|
|
|
#include "frontends/Selection.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
/**
|
|
* The Qt4 version of the Selection.
|
|
*/
|
|
class GuiSelection : public Selection
|
|
{
|
|
public:
|
|
virtual ~GuiSelection() {}
|
|
|
|
/** Selection overloaded methods
|
|
*/
|
|
//@{
|
|
void haveSelection(bool own);
|
|
docstring const get() const;
|
|
void put(docstring const & str);
|
|
bool empty() const;
|
|
//@}
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // SELECTION_H
|