e760818007
Base-level replacement of the Vision-derived text RunView― a couple important features supported by the replacee haven't been implemented yet, including: * Right-click menu * URL-highlighting/selection * Emote support
22 lines
524 B
C++
22 lines
524 B
C++
/*
|
|
* Copyright 2021, Jaidyn Levesque <jadedctrl@teknik.io>
|
|
* All rights reserved. Distributed under the terms of the MIT license.
|
|
*/
|
|
#ifndef _RENDER_VIEW_H
|
|
#define _RENDER_VIEW_H
|
|
|
|
#include <librunview/RunView.h>
|
|
|
|
|
|
class RenderView : public RunView {
|
|
public:
|
|
RenderView(const char* name);
|
|
|
|
void AppendMessage(const char* nick, const char* message,
|
|
rgb_color nameColor, time_t time = 0);
|
|
void AppendGenericMessage(const char* message);
|
|
void AppendTimestamp(time_t time = 0);
|
|
};
|
|
|
|
#endif // _RENDER_VIEW_H
|