Chat-O-Matic/libs/librunview/RunView.h

67 lines
1.6 KiB
C
Raw Normal View History

/*
* Copyright 2021, Jaidyn Levesque <jadedctrl@teknik.io>
* All rights reserved. Distributed under the terms of the MIT license.
*/
#ifndef _RUN_VIEW_H
#define _RUN_VIEW_H
#include <TextView.h>
2021-07-14 20:08:14 -05:00
#include <Url.h>
2021-07-14 22:10:23 -05:00
class BPopUpMenu;
class RunView : public BTextView {
public:
RunView(const char* name);
2021-07-14 22:10:23 -05:00
virtual void MessageReceived(BMessage* msg);
2021-07-14 15:13:36 -05:00
// Only differs in that it changes font face and color of any URLs
virtual void Insert(const char* text, const text_run_array* runs = NULL);
2021-07-14 20:08:14 -05:00
virtual void MouseDown(BPoint where);
virtual void MouseUp(BPoint where);
virtual void MouseMoved(BPoint where, uint32 code, const BMessage* drag);
virtual void Select(int32 startOffset, int32 endOffset);
void Append(const char* text, rgb_color color, BFont font);
void Append(const char* text, rgb_color color, uint16 fontFace);
void Append(const char* text, rgb_color color);
2021-07-14 22:10:23 -05:00
void Append(const char* text);
2021-07-14 20:08:14 -05:00
BString WordAt(BPoint point);
2021-07-14 22:10:23 -05:00
void FindWordAround(int32 offset, int32* start, int32* end,
BString* _word = NULL);
2021-07-14 20:08:14 -05:00
const char* GetLine(int32 line);
bool OverText(BPoint where);
bool OverUrl(BPoint where);
2021-07-14 20:08:14 -05:00
void ScrollToBottom();
private:
2021-07-14 22:10:23 -05:00
BPopUpMenu* _RightClickPopUp(BPoint where);
bool _FindUrlString(BString text, int32* start, int32* end,
int32 offset);
// For safe-keeping
text_run_array fDefaultRun;
2021-07-14 15:13:36 -05:00
text_run_array fUrlRun;
text_run_array fUrlHoverRun;
text_run_array fUrlVisitedRun;
2021-07-14 20:08:14 -05:00
BCursor* fUrlCursor;
// Whether or not the run was changed from default
bool fLastStyled;
// Information between MouseDown and MouseUp
2021-07-14 20:08:14 -05:00
BUrl fLastClicked;
bool fMouseDown;
bool fSelecting;
};
#endif // _RUN_VIEW_H