summaryrefslogtreecommitdiff
path: root/noncore
authoribotty <ibotty>2002-10-05 21:39:28 (UTC)
committer ibotty <ibotty>2002-10-05 21:39:28 (UTC)
commitfe44f36b421f983308e69a34a4d27034d2bb090f (patch) (side-by-side diff)
tree89390172a3d6a656106b0313d7bede0c0a695f08 /noncore
parented35b0684a0f5fc0f61b3f74508e1d2ae69daa47 (diff)
downloadopie-fe44f36b421f983308e69a34a4d27034d2bb090f.zip
opie-fe44f36b421f983308e69a34a4d27034d2bb090f.tar.gz
opie-fe44f36b421f983308e69a34a4d27034d2bb090f.tar.bz2
the commit formally known as "removed temporary and object files"
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/emulation_layer.obin13224 -> 0 bytes
-rw-r--r--noncore/apps/opie-console/history.obin6468 -> 0 bytes
-rw-r--r--noncore/apps/opie-console/keytrans.obin34264 -> 0 bytes
-rw-r--r--noncore/apps/opie-console/screen.obin15864 -> 0 bytes
-rw-r--r--noncore/apps/opie-console/vt102emulation.obin33320 -> 0 bytes
-rw-r--r--noncore/apps/opie-console/widget.h~213
-rw-r--r--noncore/apps/opie-console/widget.obin34560 -> 0 bytes
7 files changed, 0 insertions, 213 deletions
diff --git a/noncore/apps/opie-console/emulation_layer.o b/noncore/apps/opie-console/emulation_layer.o
deleted file mode 100644
index fe80bcb..0000000
--- a/noncore/apps/opie-console/emulation_layer.o
+++ b/dev/null
Binary files differ
diff --git a/noncore/apps/opie-console/history.o b/noncore/apps/opie-console/history.o
deleted file mode 100644
index 256d3a5..0000000
--- a/noncore/apps/opie-console/history.o
+++ b/dev/null
Binary files differ
diff --git a/noncore/apps/opie-console/keytrans.o b/noncore/apps/opie-console/keytrans.o
deleted file mode 100644
index 2557f8a..0000000
--- a/noncore/apps/opie-console/keytrans.o
+++ b/dev/null
Binary files differ
diff --git a/noncore/apps/opie-console/screen.o b/noncore/apps/opie-console/screen.o
deleted file mode 100644
index b2d0420..0000000
--- a/noncore/apps/opie-console/screen.o
+++ b/dev/null
Binary files differ
diff --git a/noncore/apps/opie-console/vt102emulation.o b/noncore/apps/opie-console/vt102emulation.o
deleted file mode 100644
index 009a4fa..0000000
--- a/noncore/apps/opie-console/vt102emulation.o
+++ b/dev/null
Binary files differ
diff --git a/noncore/apps/opie-console/widget.h~ b/noncore/apps/opie-console/widget.h~
deleted file mode 100644
index c42a83b..0000000
--- a/noncore/apps/opie-console/widget.h~
+++ b/dev/null
@@ -1,213 +0,0 @@
-/* ----------------------------------------------------------------------- */
-/* */
-/* [widget.h] Terminal Emulation Widget */
-/* */
-/* ----------------------------------------------------------------------- */
-/* */
-/* Copyright (c) 1997,1998 by Lars Doelle <lars.doelle@on-line.de> */
-/* */
-/* This file was part of Konsole - an X terminal for KDE */
-/* */
-/* ----------------------------------------------------------------------- */
-/* */
-/* Ported Konsole to Qt/Embedded */
-/* */
-/* Copyright (C) 2000 by John Ryland <jryland@trolltech.com> */
-/* */
-/* -------------------------------------------------------------------------- */
-/* */
-/* modified to suit opie-console */
-/* */
-/* Copyright (c) 2002 by opie developers <opie@handhelds.org> */
-/* */
-/* ------------------------------------------------------------------------ */
-
-// ibot: TODO *
-
-#ifndef WIDGET_H
-#define WIDGET_H
-
-#include <qapplication.h>
-#include <qwidget.h>
-#include <qlabel.h>
-#include <qtimer.h>
-#include <qcolor.h>
-#include <qkeycode.h>
-#include <qscrollbar.h>
-
-#include <qpopupmenu.h>
-
-#include "TECommon.h"
-
-extern unsigned short vt100_graphics[32];
-
-class Session;
-
-// class Konsole;
-
-class TEWidget : public QFrame
-// a widget representing attributed text
-{ Q_OBJECT
-
-// friend class Konsole;
-
-public:
-
- TEWidget(QWidget *parent=0, const char *name=0);
- virtual ~TEWidget();
-
-public:
-
- QColor getDefaultBackColor();
-
- const ColorEntry* getColorTable() const;
- const ColorEntry* getdefaultColorTable() const;
- void setColorTable(const ColorEntry table[]);
-
- void setScrollbarLocation(int loc);
- enum { SCRNONE=0, SCRLEFT=1, SCRRIGHT=2 };
-
- void setScroll(int cursor, int lines);
- void doScroll(int lines);
-
- void emitSelection();
-
-public:
-
- void setImage(const ca* const newimg, int lines, int columns);
-
- int Lines() { return lines; }
- int Columns() { return columns; }
-
- void calcGeometry();
- void propagateSize();
- QSize calcSize(int cols, int lins) const;
-
- QSize sizeHint() const;
-
-public:
-
- void Bell();
- void emitText(QString text);
- void pasteClipboard();
-
-signals:
-
- void keyPressedSignal(QKeyEvent *e);
- void mouseSignal(int cb, int cx, int cy);
- void changedImageSizeSignal(int lines, int columns);
- void changedHistoryCursor(int value);
- void configureRequest( TEWidget*, int state, int x, int y );
-
- void clearSelectionSignal();
- void beginSelectionSignal( const int x, const int y );
- void extendSelectionSignal( const int x, const int y );
- void endSelectionSignal(const BOOL preserve_line_breaks);
-
-
-protected:
-
- virtual void styleChange( QStyle& );
-
- bool eventFilter( QObject *, QEvent * );
-
- void drawAttrStr(QPainter &paint, QRect rect,
- QString& str, ca attr, BOOL pm, BOOL clear);
- void paintEvent( QPaintEvent * );
-
- void resizeEvent(QResizeEvent*);
-
- void fontChange(const QFont &font);
- void frameChanged();
-
- void mouseDoubleClickEvent(QMouseEvent* ev);
- void mousePressEvent( QMouseEvent* );
- void mouseReleaseEvent( QMouseEvent* );
- void mouseMoveEvent( QMouseEvent* );
-
- void focusInEvent( QFocusEvent * );
- void focusOutEvent( QFocusEvent * );
- bool focusNextPrevChild( bool next );
-
-#ifndef QT_NO_DRAGANDDROP
- // Dnd
- void dragEnterEvent(QDragEnterEvent* event);
- void dropEvent(QDropEvent* event);
-#endif
-
- virtual int charClass(char) const;
-
- void clearImage();
-
-public:
- const QPixmap *backgroundPixmap();
-
- void setSelection(const QString &t);
-
- virtual void setFont(const QFont &);
- void setVTFont(const QFont &);
- QFont getVTFont();
-
- void setMouseMarks(bool on);
-
-public slots:
-
- void onClearSelection();
-
-protected slots:
-
- void scrollChanged(int value);
- void blinkEvent();
-
-private:
-
- QChar (*fontMap)(QChar); // possible vt100 font extention
-
- bool fixed_font; // has fixed pitch
- int font_h; // height
- int font_w; // width
- int font_a; // ascend
-
- int blX; // actual offset (left)
- int brX; // actual offset (right)
- int bY; // actual offset
-
- int lines;
- int columns;
- ca *image; // [lines][columns]
-
- ColorEntry color_table[TABLE_COLORS];
-
- BOOL resizing;
- bool mouse_marks;
-
- void makeImage();
-
- QPoint iPntSel; // initial selection point
- QPoint pntSel; // current selection point
- int actSel; // selection state
- BOOL word_selection_mode;
- BOOL preserve_line_breaks;
-
- QClipboard* cb;
- QScrollBar* scrollbar;
- int scrollLoc;
-
-//#define SCRNONE 0
-//#define SCRLEFT 1
-//#define SCRRIGHT 2
-
- BOOL blinking; // hide text in paintEvent
- BOOL hasBlinker; // has characters to blink
- QTimer* blinkT; // active when hasBlinker
- QPopupMenu* m_drop;
- QString dropText;
- public:
- // current session in this widget
- // ibot: switch from TESession to Session!
- Session *currentSession;
-private slots:
- void drop_menu_activated(int item);
-};
-
-#endif // TE_WIDGET_H
diff --git a/noncore/apps/opie-console/widget.o b/noncore/apps/opie-console/widget.o
deleted file mode 100644
index e2062a4..0000000
--- a/noncore/apps/opie-console/widget.o
+++ b/dev/null
Binary files differ