Replace PNGs with resizable PDF template images
1436
Frameworks/OakTextView/resources/Bookmark Hover Add Template.pdf
Executable file
|
Before Width: | Height: | Size: 252 B |
|
Before Width: | Height: | Size: 391 B |
1126
Frameworks/OakTextView/resources/Bookmark Hover Remove Template.pdf
Executable file
|
Before Width: | Height: | Size: 237 B |
|
Before Width: | Height: | Size: 384 B |
1221
Frameworks/OakTextView/resources/Bookmark Pressed Template.pdf
Normal file
|
Before Width: | Height: | Size: 159 B |
|
Before Width: | Height: | Size: 212 B |
1278
Frameworks/OakTextView/resources/Bookmark Template.pdf
Normal file
|
Before Width: | Height: | Size: 158 B |
|
Before Width: | Height: | Size: 211 B |
|
Before Width: | Height: | Size: 320 B |
|
Before Width: | Height: | Size: 508 B |
1199
Frameworks/OakTextView/resources/Folding Bottom Hover Template.pdf
Normal file
1190
Frameworks/OakTextView/resources/Folding Bottom Pressed Template.pdf
Normal file
|
Before Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 527 B |
1227
Frameworks/OakTextView/resources/Folding Bottom Template.pdf
Normal file
|
Before Width: | Height: | Size: 198 B |
|
Before Width: | Height: | Size: 305 B |
|
Before Width: | Height: | Size: 308 B |
|
Before Width: | Height: | Size: 568 B |
|
Before Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 542 B |
1063
Frameworks/OakTextView/resources/Folding Collapsed Template.pdf
Normal file
|
Before Width: | Height: | Size: 196 B |
|
Before Width: | Height: | Size: 261 B |
|
Before Width: | Height: | Size: 315 B |
|
Before Width: | Height: | Size: 513 B |
1257
Frameworks/OakTextView/resources/Folding Top Hover Template.pdf
Normal file
1234
Frameworks/OakTextView/resources/Folding Top Pressed Template.pdf
Normal file
|
Before Width: | Height: | Size: 291 B |
|
Before Width: | Height: | Size: 517 B |
1299
Frameworks/OakTextView/resources/Folding Top Template.pdf
Normal file
|
Before Width: | Height: | Size: 209 B |
|
Before Width: | Height: | Size: 322 B |
1259
Frameworks/OakTextView/resources/Search Mark Template.pdf
Normal file
|
Before Width: | Height: | Size: 263 B |
|
Before Width: | Height: | Size: 425 B |
@@ -652,12 +652,12 @@ static std::string const kBookmarkType = "bookmark";
|
||||
{
|
||||
if([identifier isEqualToString:kBookmarksColumnIdentifier])
|
||||
{
|
||||
static retained_image_t images[] = { NULL, "Bookmark", "Search Mark" };
|
||||
static retained_image_t images[] = { NULL, "Bookmark Template", "Search Mark Template" };
|
||||
return state < sizeofA(images) ? images[state] : nil;
|
||||
}
|
||||
else if([identifier isEqualToString:kFoldingsColumnIdentifier])
|
||||
{
|
||||
static retained_image_t images[] = { NULL, "Folding Top", "Folding Collapsed", "Folding Bottom" };
|
||||
static retained_image_t images[] = { NULL, "Folding Top Template", "Folding Collapsed Template", "Folding Bottom Template" };
|
||||
return state < sizeofA(images) ? images[state] : nil;
|
||||
}
|
||||
return nil;
|
||||
@@ -667,12 +667,12 @@ static std::string const kBookmarkType = "bookmark";
|
||||
{
|
||||
if([identifier isEqualToString:kBookmarksColumnIdentifier])
|
||||
{
|
||||
static retained_image_t images[] = { "Bookmark Hover Add", "Bookmark Hover Remove", "Bookmark Hover Add" };
|
||||
static retained_image_t images[] = { "Bookmark Hover Add Template", "Bookmark Hover Remove Template", "Bookmark Hover Add Template" };
|
||||
return state < sizeofA(images) ? images[state] : nil;
|
||||
}
|
||||
else if([identifier isEqualToString:kFoldingsColumnIdentifier])
|
||||
{
|
||||
static retained_image_t images[] = { NULL, "Folding Top Hoover", "Folding Collapsed Hoover", "Folding Bottom Hoover" };
|
||||
static retained_image_t images[] = { NULL, "Folding Top Hover Template", "Folding Collapsed Hover Template", "Folding Bottom Hover Template" };
|
||||
return state < sizeofA(images) ? images[state] : nil;
|
||||
}
|
||||
return nil;
|
||||
@@ -682,12 +682,12 @@ static std::string const kBookmarkType = "bookmark";
|
||||
{
|
||||
if([identifier isEqualToString:kBookmarksColumnIdentifier])
|
||||
{
|
||||
static retained_image_t images[] = { "Bookmark Pressed", "Bookmark Pressed", "Bookmark Pressed" };
|
||||
static retained_image_t images[] = { "Bookmark Pressed Template", "Bookmark Pressed Template", "Bookmark Pressed Template" };
|
||||
return state < sizeofA(images) ? images[state] : nil;
|
||||
}
|
||||
else if([identifier isEqualToString:kFoldingsColumnIdentifier])
|
||||
{
|
||||
static retained_image_t images[] = { NULL, "Folding Top Pressed", "Folding Collapsed Pressed", "Folding Bottom Pressed" };
|
||||
static retained_image_t images[] = { NULL, "Folding Top Pressed Template", "Folding Collapsed Pressed Template", "Folding Bottom Pressed Template" };
|
||||
return state < sizeofA(images) ? images[state] : nil;
|
||||
}
|
||||
return nil;
|
||||
|
||||