-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathimgui_markdown.h
588 lines (529 loc) · 22.4 KB
/
imgui_markdown.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
#pragma once
// License: zlib
// Copyright (c) 2019 Juliette Foucaut & Doug Binks
//
// This software is provided 'as-is', without any express or implied
// warranty. In no event will the authors be held liable for any damages
// arising from the use of this software.
//
// Permission is granted to anyone to use this software for any purpose,
// including commercial applications, and to alter it and redistribute it
// freely, subject to the following restrictions:
//
// 1. The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software. If you use this software
// in a product, an acknowledgment in the product documentation would be
// appreciated but is not required.
// 2. Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
// 3. This notice may not be removed or altered from any source distribution.
/*
API BREAKING CHANGES
====================
- 2019/02/01 - Changed LinkCallback parameters, see https://github.com/juliettef/imgui_markdown/issues/2
- 2019/02/05 - Added ImageCallback parameter to ImGui::MarkdownConfig
- 2019/02/06 - Added useLinkCallback member variable to MarkdownImageData to configure using images as links
*/
/*
imgui_markdown https://github.com/juliettef/imgui_markdown
Markdown for Dear ImGui
A permissively licensed markdown single-header library for https://github.com/ocornut/imgui
imgui_markdown currently supports the following markdown functionality:
- Wrapped text
- Headers H1, H2, H3
- Indented text, multi levels
- Unordered lists and sub-lists
- Links
- Images
Syntax
Wrapping:
Text wraps automatically. To add a new line, use 'Return'.
Headers:
# H1
## H2
### H3
Indents:
On a new line, at the start of the line, add two spaces per indent.
··Indent level 1
····Indent level 2
Unordered lists:
On a new line, at the start of the line, add two spaces, an asterisks and a space.
For nested lists, add two additional spaces in front of the asterisk per list level increment.
··*·Unordered List level 1
····*·Unordered List level 2
Links:
[link description](https://...)
Images:
![image alt text](image identifier e.g. filename)
===============================================================================
// Example use on Windows with links opening in a browser
#include "ImGui.h" // https://github.com/ocornut/imgui
#include "imgui_markdown.h" // https://github.com/juliettef/imgui_markdown
#include "IconsFontAwesome5.h" // https://github.com/juliettef/IconFontCppHeaders
// Following includes for Windows LinkCallback
#define WIN32_LEAN_AND_MEAN
#include <Windows.h>
#include "Shellapi.h"
#include <string>
void LinkCallback( ImGui::MarkdownLinkCallbackData data_ );
inline ImGui::MarkdownImageData ImageCallback( ImGui::MarkdownLinkCallbackData data_ );
// You can make your own Markdown function with your prefered string container and markdown config.
static ImGui::MarkdownConfig mdConfig{ LinkCallback, ImageCallback, ICON_FA_LINK, { { NULL, true }, { NULL, true }, { NULL, false } } };
void LinkCallback( ImGui::MarkdownLinkCallbackData data_ )
{
std::string url( data_.link, data_.linkLength );
if( !data_.isImage )
{
ShellExecuteA( NULL, "open", url.c_str(), NULL, NULL, SW_SHOWNORMAL );
}
}
inline ImGui::MarkdownImageData ImageCallback( ImGui::MarkdownLinkCallbackData data_ )
{
// In your application you would load an image based on data_ input. Here we just use the imgui font texture.
ImTextureID image = ImGui::GetIO().Fonts->TexID;
ImGui::MarkdownImageData imageData{ true, false, image, ImVec2( 40.0f, 20.0f ) };
return imageData;
}
void LoadFonts( float fontSize_ = 12.0f )
{
ImGuiIO& io = ImGui::GetIO();
io.Fonts->Clear();
// Base font
io.Fonts->AddFontFromFileTTF( "myfont.ttf", fontSize_ );
// Bold headings H2 and H3
mdConfig.headingFormats[ 1 ].font = io.Fonts->AddFontFromFileTTF( "myfont-bold.ttf", fontSize_ );
mdConfig.headingFormats[ 2 ].font = mdConfig.headingFormats[ 1 ].font;
// bold heading H1
float fontSizeH1 = fontSize_ * 1.1f;
mdConfig.headingFormats[ 0 ].font = io.Fonts->AddFontFromFileTTF( "myfont-bold.ttf", fontSizeH1 );
}
void Markdown( const std::string& markdown_ )
{
// fonts for, respectively, headings H1, H2, H3 and beyond
ImGui::Markdown( markdown_.c_str(), markdown_.length(), mdConfig );
}
void MarkdownExample()
{
const std::string markdownText = u8R"(
# H1 Header: Text and Links
You can add [links like this one to enkisoftware](https://www.enkisoftware.com/) and lines will wrap well.
## H2 Header: indented text.
This text has an indent (two leading spaces).
This one has two.
### H3 Header: Lists
* Unordered lists
* Lists can be indented with two extra spaces.
* Lists can have [links like this one to Avoyd](https://www.avoyd.com/)
)";
Markdown( markdownText );
}
===============================================================================
*/
#include <stdint.h>
namespace ImGui
{
//-----------------------------------------------------------------------------
// Basic types
//-----------------------------------------------------------------------------
struct MarkdownLinkCallbackData // for both links and images
{
const char* text; // text between square brackets []
int textLength;
const char* link; // text between brackets ()
int linkLength;
void* userData;
bool isImage; // true if '!' is detected in front of the link syntax
};
struct MarkdownImageData
{
bool isValid = false; // if true, will draw the image
bool useLinkCallback = false; // if true, linkCallback will be called when image is clicked
ImTextureID user_texture_id; // see ImGui::Image
const ImVec2 size; // see ImGui::Image
const ImVec2 uv0 = ImVec2( 0, 0 ); // see ImGui::Image
const ImVec2 uv1 = ImVec2( 1, 1 ); // see ImGui::Image
const ImVec4 tint_col = ImVec4( 1, 1, 1, 1 ); // see ImGui::Image
const ImVec4 border_col = ImVec4( 0, 0, 0, 0 ); // see ImGui::Image
};
typedef void MarkdownLinkCallback( MarkdownLinkCallbackData data );
typedef MarkdownImageData MarkdownImageCallback( MarkdownLinkCallbackData data );
struct MarkdownHeadingFormat
{
ImFont* font; // ImGui font
bool separator; // if true, an underlined separator is drawn after the header
bool newline_above; // if true, add a newline above the header
bool newline_below; // if true, add a newline below the header
};
// Configuration struct for Markdown
// - linkCallback is called when a link is clicked on
// - linkIcon is a string which encode a "Link" icon, if available in the current font (e.g. linkIcon = ICON_FA_LINK with FontAwesome + IconFontCppHeaders https://github.com/juliettef/IconFontCppHeaders)
// - HeadingFormat controls the format of heading H1 to H3, those above H3 use H3 format
struct MarkdownConfig
{
static const int NUMHEADINGS = 3;
MarkdownLinkCallback* linkCallback = NULL;
MarkdownImageCallback* imageCallback = NULL;
const char* linkIcon = ""; // icon displayd in link tooltip
MarkdownHeadingFormat headingFormats[ NUMHEADINGS ] = { { NULL, true, true, true }, { NULL, true, true, true }, { NULL, true, true, true } };
void* userData = NULL;
};
//-----------------------------------------------------------------------------
// External interface
//-----------------------------------------------------------------------------
inline void Markdown( const char* markdown_, size_t markdownLength_, const MarkdownConfig& mdConfig_ );
//-----------------------------------------------------------------------------
// Internals
//-----------------------------------------------------------------------------
struct TextRegion;
struct Line;
inline void UnderLine( ImColor col_ );
inline void RenderLine( const char* markdown_, Line& line_, TextRegion& textRegion_, const MarkdownConfig& mdConfig_ );
struct TextRegion
{
TextRegion() : indentX( 0.0f )
{
pFont = ImGui::GetFont();
}
~TextRegion()
{
ResetIndent();
}
// ImGui::TextWrapped will wrap at the starting position
// so to work around this we render using our own wrapping for the first line
void RenderTextWrapped( const char* text, const char* text_end, bool bIndentToHere = false )
{
const float scale = 1.0f;
float widthLeft = GetContentRegionAvail().x;
const char* endPrevLine = pFont->CalcWordWrapPositionA( scale, text, text_end, widthLeft );
ImGui::TextUnformatted( text, endPrevLine );
if( bIndentToHere )
{
float indentNeeded = GetContentRegionAvail().x - widthLeft;
if( indentNeeded )
{
ImGui::Indent( indentNeeded );
indentX += indentNeeded;
}
}
widthLeft = GetContentRegionAvail().x;
while( endPrevLine < text_end )
{
text = endPrevLine;
if( *text == ' ' ) { ++text; } // skip a space at start of line
endPrevLine = pFont->CalcWordWrapPositionA( scale, text, text_end, widthLeft );
if( text == endPrevLine )
{
endPrevLine++;
}
ImGui::TextUnformatted( text, endPrevLine );
}
}
void RenderListTextWrapped( const char* text, const char* text_end )
{
ImGui::Bullet();
ImGui::SameLine();
RenderTextWrapped( text, text_end, true );
}
void ResetIndent()
{
if( indentX > 0.0f )
{
ImGui::Unindent( indentX );
}
indentX = 0.0f;
}
private:
float indentX;
ImFont* pFont;
};
// Text that starts after a new line (or at beginning) and ends with a newline (or at end)
struct Line {
bool isHeading = false;
bool isUnorderedListStart = false;
bool isLeadingSpace = true; // spaces at start of line
int leadSpaceCount = 0;
int headingCount = 0;
int lineStart = 0;
int lineEnd = 0;
int lastRenderPosition = 0; // lines may get rendered in multiple pieces
};
struct TextBlock { // subset of line
int start = 0;
int stop = 0;
int size() const
{
return stop - start;
}
};
struct Link {
enum LinkState {
NO_LINK,
HAS_SQUARE_BRACKET_OPEN,
HAS_SQUARE_BRACKETS,
HAS_SQUARE_BRACKETS_ROUND_BRACKET_OPEN,
};
LinkState state = NO_LINK;
TextBlock text;
TextBlock url;
bool isImage = false;
};
inline void UnderLine( ImColor col_ )
{
ImVec2 min = ImGui::GetItemRectMin();
ImVec2 max = ImGui::GetItemRectMax();
min.y = max.y;
ImGui::GetWindowDrawList()->AddLine( min, max, col_, 1.0f );
}
inline void RenderLine( const char* markdown_, Line& line_, TextRegion& textRegion_, const MarkdownConfig& mdConfig_ )
{
// indent
int indentStart = 0;
if( line_.isUnorderedListStart ) // ImGui unordered list render always adds one indent
{
indentStart = 1;
}
for( int j = indentStart; j < line_.leadSpaceCount / 2; ++j ) // add indents
{
ImGui::Indent();
}
// render
int textStart = line_.lastRenderPosition + 1;
int textSize = line_.lineEnd - textStart;
if( line_.isUnorderedListStart ) // render unordered list
{
const char* text = markdown_ + textStart + 1;
textRegion_.RenderListTextWrapped( text, text + textSize - 1 );
}
else if( line_.isHeading ) // render heading
{
MarkdownHeadingFormat fmt;
if( line_.headingCount > mdConfig_.NUMHEADINGS )
{
fmt = mdConfig_.headingFormats[ mdConfig_.NUMHEADINGS - 1 ];
}
else
{
fmt = mdConfig_.headingFormats[ line_.headingCount - 1 ];
}
bool popFontRequired = false;
if( fmt.font && fmt.font != ImGui::GetFont() )
{
ImGui::PushFont( fmt.font );
popFontRequired = true;
}
const char* text = markdown_ + textStart + 1;
if (fmt.newline_above) {
ImGui::NewLine();
}
textRegion_.RenderTextWrapped( text, text + textSize - 1 );
if( fmt.separator )
{
ImGui::Separator();
}
if ( fmt.newline_below )
{
ImGui::NewLine();
}
if( popFontRequired )
{
ImGui::PopFont();
}
}
else // render a normal paragraph chunk
{
const char* text = markdown_ + textStart;
textRegion_.RenderTextWrapped( text, text + textSize );
}
// unindent
for( int j = indentStart; j < line_.leadSpaceCount / 2; ++j )
{
ImGui::Unindent();
}
}
// render markdown
inline void Markdown( const char* markdown_, size_t markdownLength_, const MarkdownConfig& mdConfig_ )
{
ImGuiStyle& style = ImGui::GetStyle();
Line line;
Link link;
TextRegion textRegion;
char c = 0;
for( int i=0; i < (int)markdownLength_; ++i )
{
c = markdown_[i]; // get the character at index
if( c == 0 ) { break; } // shouldn't happen but don't go beyond 0.
// If we're at the beginning of the line, count any spaces
if( line.isLeadingSpace )
{
if( c == ' ' )
{
++line.leadSpaceCount;
continue;
}
else
{
line.isLeadingSpace = false;
line.lastRenderPosition = i - 1;
if(( c == '*' ) && ( line.leadSpaceCount >= 2 ))
{
if(( (int)markdownLength_ > i + 1 ) && ( markdown_[ i + 1 ] == ' ' )) // space after '*'
{
line.isUnorderedListStart = true;
++i;
++line.lastRenderPosition;
}
continue;
}
else if( c == '#' )
{
line.headingCount++;
bool bContinueChecking = true;
uint32_t j = i;
while( ++j < markdownLength_ && bContinueChecking )
{
c = markdown_[j];
switch( c )
{
case '#':
line.headingCount++;
break;
case ' ':
line.lastRenderPosition = j - 1;
i = j;
line.isHeading = true;
bContinueChecking = false;
break;
default:
line.isHeading = false;
bContinueChecking = false;
break;
}
}
if( line.isHeading ) { continue; }
}
}
}
// Test to see if we have a link
switch( link.state )
{
case Link::NO_LINK:
if( c == '[' )
{
link.state = Link::HAS_SQUARE_BRACKET_OPEN;
link.text.start = i + 1;
if( i > 0 && markdown_[i - 1] == '!' )
{
link.isImage = true;
}
}
break;
case Link::HAS_SQUARE_BRACKET_OPEN:
if( c == ']' )
{
link.state = Link::HAS_SQUARE_BRACKETS;
link.text.stop = i;
}
break;
case Link::HAS_SQUARE_BRACKETS:
if( c == '(' )
{
link.state = Link::HAS_SQUARE_BRACKETS_ROUND_BRACKET_OPEN;
link.url.start = i + 1;
}
break;
case Link::HAS_SQUARE_BRACKETS_ROUND_BRACKET_OPEN:
if( c == ')' )
{
// render previous line content
line.lineEnd = link.text.start - ( link.isImage ? 2 : 1 );
RenderLine( markdown_, line, textRegion, mdConfig_ );
line.leadSpaceCount = 0;
link.url.stop = i;
line.isUnorderedListStart = false; // the following text shouldn't have bullets
ImGui::SameLine( 0.0f, 0.0f );
if( link.isImage ) // it's an image, render it.
{
bool drawnImage = false;
bool useLinkCallback = false;
if( mdConfig_.imageCallback )
{
MarkdownImageData imageData = mdConfig_.imageCallback({ markdown_ + link.text.start, link.text.size(), markdown_ + link.url.start, link.url.size(), mdConfig_.userData, link.isImage });
useLinkCallback = imageData.useLinkCallback;
if( imageData.isValid )
{
ImGui::Image( imageData.user_texture_id, imageData.size, imageData.uv0, imageData.uv1, imageData.tint_col, imageData.border_col );
drawnImage = true;
}
}
if( !drawnImage )
{
ImGui::Text( "( Image %.*s not loaded )", link.url.size(), markdown_ + link.url.start );
}
if( ImGui::IsItemHovered() )
{
if( mdConfig_.linkCallback && useLinkCallback )
{
mdConfig_.linkCallback( { markdown_ + link.text.start, link.text.size(), markdown_ + link.url.start, link.url.size(), mdConfig_.userData, true } );
}
if( link.text.size() > 0 )
{
ImGui::SetTooltip( "%.*s", link.text.size(), markdown_ + link.text.start );
}
}
}
else // it's a link, render it.
{
ImGui::PushStyleColor( ImGuiCol_Text, style.Colors[ ImGuiCol_ButtonHovered ] );
ImGui::PushTextWrapPos( -1.0f );
ImGui::TextUnformatted( markdown_ + link.text.start, markdown_ + link.text.start + link.text.size() );
ImGui::PopTextWrapPos();
ImGui::PopStyleColor();
if( ImGui::IsItemHovered() )
{
if( mdConfig_.linkCallback )
{
mdConfig_.linkCallback({ markdown_ + link.text.start, link.text.size(), markdown_ + link.url.start, link.url.size(), mdConfig_.userData, false });
}
ImGui::UnderLine( style.Colors[ ImGuiCol_ButtonHovered ] );
ImGui::SetTooltip( "%s Open %.*s", mdConfig_.linkIcon, link.url.size(), markdown_ + link.url.start );
}
else
{
ImGui::UnderLine( style.Colors[ ImGuiCol_Button ] );
}
}
ImGui::SameLine( 0.0f, 0.0f );
// reset the link by reinitializing it
link = Link();
line.lastRenderPosition = i;
break;
}
}
// handle end of line (render)
if( c == '\n' )
{
// render the line
line.lineEnd = i;
RenderLine( markdown_, line, textRegion, mdConfig_ );
// reset the line
line = Line();
line.lineStart = i + 1;
line.lastRenderPosition = i;
textRegion.ResetIndent();
// reset the link
link = Link();
}
}
// render any remaining text if last char wasn't 0
if( markdownLength_ && line.lineStart < (int)markdownLength_ && markdown_[ line.lineStart ] != 0 )
{
// handle both null terminated and non null terminated strings
line.lineEnd = (int)markdownLength_;
if( 0 == markdown_[ line.lineEnd - 1 ] )
{
--line.lineEnd;
}
RenderLine( markdown_, line, textRegion, mdConfig_ );
}
}
}