Changeset 3d333fd in Readingame for HyperTextView.cpp


Ignore:
Timestamp:
Aug 19, 2023, 3:57:25 PM (10 months ago)
Author:
PulkoMandy <pulkomandy@…>
Branches:
main
Children:
a607072
Parents:
3d27dc6
Message:

Continue adding things

  • Fix main window layout (text view sizing)
  • Implement conditional messages (partially)
  • Implements some more opcodes around flags
File:
1 edited

Legend:

Unmodified
Added
Removed
  • HyperTextView.cpp

    r3d27dc6 r3d333fd  
    201201
    202202
     203bool
     204HyperTextView::HasHeightForWidth()
     205{
     206        return BView::HasHeightForWidth();
     207}
     208
     209
     210void
     211HyperTextView::GetHeightForWidth(float width, float* min, float* max, float* preferred)
     212{
     213        BView::GetHeightForWidth(width, min, max, preferred);
     214}
     215
     216
    203217void
    204218HyperTextView::SetText(const char* text)
Note: See TracChangeset for help on using the changeset viewer.