mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-14 06:57:01 +00:00
0a736a817a
Some bugs still need squashing too, but at least it compiles. Also rename gui widgets consistently. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1873 a592a061-630c-0410-9148-cb99ea01b6c8
33 lines
579 B
C++
33 lines
579 B
C++
/**
|
|
* \file FormTabularCreate.h
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author John Levon
|
|
*/
|
|
|
|
#ifndef FORMTABULARCREATE_H
|
|
#define FORMTABULARCREATE_H
|
|
|
|
#include "KFormBase.h"
|
|
|
|
class ControlTabularCreate;
|
|
class TabularCreateDialog;
|
|
|
|
///
|
|
class FormTabularCreate : public KFormBase<ControlTabularCreate, TabularCreateDialog> {
|
|
public:
|
|
///
|
|
FormTabularCreate(ControlTabularCreate & c);
|
|
|
|
private:
|
|
/// apply dialog
|
|
virtual void apply();
|
|
/// build dialog
|
|
virtual void build();
|
|
/// not used
|
|
virtual void update() {};
|
|
};
|
|
|
|
#endif // FORMTABULARCREATE_H
|