summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/emulation_widget.h
authoribotty <ibotty>2002-10-11 17:15:59 (UTC)
committer ibotty <ibotty>2002-10-11 17:15:59 (UTC)
commit526ee9ecc0e9b35dfff85f37ece86ab628efd47e (patch) (side-by-side diff)
tree51c8ad3e3caac58150d4386e8f1b37380e40ed93 /noncore/apps/opie-console/emulation_widget.h
parent85249d2b17fe30418342ddc8ef18054f14d3fc10 (diff)
downloadopie-526ee9ecc0e9b35dfff85f37ece86ab628efd47e.zip
opie-526ee9ecc0e9b35dfff85f37ece86ab628efd47e.tar.gz
opie-526ee9ecc0e9b35dfff85f37ece86ab628efd47e.tar.bz2
initial not working commit
Diffstat (limited to 'noncore/apps/opie-console/emulation_widget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/emulation_widget.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/emulation_widget.h b/noncore/apps/opie-console/emulation_widget.h
new file mode 100644
index 0000000..9d0f63e
--- a/dev/null
+++ b/noncore/apps/opie-console/emulation_widget.h
@@ -0,0 +1,80 @@
+// opie console includes
+#include "widget_layer.h"
+#include "profile.h"
+#include "common.h"
+
+// qt includes
+#include <qwidget.h>
+#include <qpainter.h>
+#include <qstring.h>
+#include <qarray.h>
+#include <qrect.h>
+
+
+/**
+ * EmulationWidget
+ * simple implementation of EmulationLayer
+ * (doesn't support scrollbar, history, etc, yet)
+ */
+class EmulationWidget : public WidgetLayer
+{ Q_OBJECT
+
+public:
+
+ /**
+ * constructor
+ * @param const Profile& config, the configuration
+ * @param QWidget* parent, parent widget
+ * @param const char* name, the name of the widget
+ */
+ EmulationWidget( const Profile& config, QWidget *parent=0, const char *name =0 );
+
+ /**
+ * destructor
+ */
+ ~EmulationWidget();
+
+ /**
+ * sets the image
+ * @param QArray<Character> const newimg, the new image
+ * @param int lines, lines of the new image
+ * @param int columns, columns of the new image
+ */
+ virtual void setImage( QArray<Character> const newimg, int columns, int lines );
+
+ /**
+ * reloads configuration
+ * @param const Profile& config, configuration
+ */
+ virtual void reloadConfig( const Profile& config );
+
+ /**
+ * sets the scrollbar (not yet implemented)
+ */
+ virtual void setScroll( int cursor, int slines );
+
+ /**
+ * scrolls (not yet implemented)
+ * @param int value, scroll by this value
+ */
+ virtual void scroll( int value );
+
+protected:
+
+ /**
+ * calculates current image bounds
+ */
+ virtual void calcGeometry();
+
+ /**
+ * draws a String
+ * @param QString& string, string to be drawn
+ * @param QPainter& painter, painter, that should draw
+ * @param QRect rect, rect to be drawn into
+ * @param Character attr, attributes of Characters
+ * @param bool usePixmap, if to use the background pixmap (currently not supported)
+ * @param bool clear, if rect should be cleared
+ */
+ void drawAttrString( QString& string, QPainter& painter, QRect rect, Character attr, bool pm, bool clear );
+
+}