kviewshell
textBox.h
Go to the documentation of this file.00001 // -*- C++ -*- 00002 // 00003 // Class: textBox 00004 // 00005 // Part of KDVI- A previewer for TeX DVI files. 00006 // 00007 // (C) 2004-2005 Stefan Kebekus. Distributed under the GPL. 00008 00009 00010 #ifndef _textbox_h_ 00011 #define _textbox_h_ 00012 00013 #include <qrect.h> 00014 #include <qstring.h> 00015 00028 class TextBox 00029 { 00030 public: 00035 TextBox() {} 00036 00044 TextBox(const QRect& re, const QString& lT): box(re), text(lT) {} 00045 00054 QRect box; 00055 00060 QString text; 00061 }; 00062 00063 00064 00065 #endif