You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeedu/kvoctrain/kvoctrain/kvoctraintableitem.h

52 lines
1.6 KiB

/***************************************************************************
table item for the main view
-----------------------------------------------------------------------
begin : Mon Dec 27 17:05:53 PST 2004
copyright : (C) 2004-2005 Peter Hedlund
email : peter.hedlund@kdemail.net
-----------------------------------------------------------------------
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef KVOCTRAINTABLEITEM_H
#define KVOCTRAINTABLEITEM_H
#include <tqtable.h>
#include "kvoctraindoc.h"
#include "kv_resource.h"
/**
@author Peter Hedlund
*/
class KVocTrainTableItem : public TQTableItem
{
public:
KVocTrainTableItem( TQTable *t, EditType et, kvoctrainDoc *doc );
TQWidget *createEditor() const;
void setContentFromEditor( TQWidget *w );
void setPosition(int row, int col);
void setDoc(kvoctrainDoc *doc);
private:
kvoctrainDoc * m_doc;
};
#endif