kviewshell
hyperlink.h
Go to the documentation of this file.00001 // -*- C++ -*- 00002 // 00003 // Class: hyperlink 00004 // 00005 // Part of KDVI- A previewer for TeX DVI files. 00006 // 00007 // (C) 2004-2005 Stefan Kebekus. Distributed under the GPL. 00008 00009 #ifndef _hyperlink_h_ 00010 #define _hyperlink_h_ 00011 00012 #include <qrect.h> 00013 #include <qstring.h> 00014 00015 00025 class Hyperlink 00026 { 00027 public: 00032 Hyperlink() {} 00033 00042 Hyperlink(Q_UINT32 bl, const QRect& re, const QString& lT): baseline(bl), box(re), linkText(lT) {} 00043 00055 Q_UINT32 baseline; 00056 00065 QRect box; 00066 00073 QString linkText; 00074 }; 00075 00076 00077 00078 #endif