Skip to content
Snippets Groups Projects
Select Git revision
  • f8b621ea34c4c6752e2efef0c910cece4a44b8f0
  • master default protected
  • dev_2022
  • patch-1
  • develop
  • 50-use-ubuntus-libhidapi
  • issue-highLevelDispatch
  • issue-highLevelDesign
  • issue-motorStartBug
  • issue-commandLayerDesign
  • v1.0
  • v0.4-rc.13
  • v0.4-rc.12
  • v0.4-rc.11
  • v0.4-rc.10
  • v0.4-rc.9
  • v0.3-rc.8
  • v0.3-rc.7
  • v0.3-rc.6
  • v0.3-rc.5
  • v0.3-rc.4
  • v0.3-rc.3
  • v0.3-rc.2
  • v0.3-rc.1
  • v0.3-rc
  • v0.2
  • v0.1.1
  • v0.1
28 results

UIDrawSubCodes.m

Blame
    • Tim Stadtmann's avatar
      b8547226
      Change mode of enumerations · b8547226
      Tim Stadtmann authored
      The python-doc-preprocess script will change the mode of the enum-files each time
      they are processed. In order to avoid a stuffed list of changed files in git,
      the file mode is now permanently changed.
      b8547226
      History
      Change mode of enumerations
      Tim Stadtmann authored
      The python-doc-preprocess script will change the mode of the enum-files each time
      they are processed. In order to avoid a stuffed list of changed files in git,
      the file mode is now permanently changed.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    UIDrawSubCodes.m 1.49 KiB
    %UIDrawSubCodes UIDrawSubCodes enumeration for the brick
    %
    % Notes::
    % - UIDrawSubCodes can be found in the EV3 documentation and source code
    % (bytecodes.h)
    % - USE SCREEN FOR GRAPHICS
    %   -----------------------
    %   
    %     opUI_DRAW,LC0(FILLWINDOW),LC0(0),LC0(0),LC0(0)
    %   
    %       (clear entire screen by filling it with zero - background color)
    %       
    %       
    %     opUI_DRAW, - - - - - - 
    %     opUI_DRAW, - - - - - - 
    %     opUI_DRAW, - - - - - - 
    %     
    %       (draw graphical stuff on the screen)
    %       
    %     
    %     opUI_DRAW,LC0(UPDATE)  
    %   
    %       (show the stuff by updating the screen)
    %   
    % 
    % 
    %   RESTORE RUN SCREEN
    %   ------------------
    %   
    %     opUI_WRITE,LC0(INIT_RUN)
    % 
    %       (enable the animated run screen)
    
    classdef UIDrawSubCodes < uint8
        enumeration
             Update(0)
             Clean (1)
             Pixel (2)
             Line (3)
             Circle (4)
             Text (5)
             Icon (6)
             Picture (7)
             Value (8)
             Fillrect(9)
             Rect (10)
             Notification (11)
             Question (12)
             Keyboard (13)
             Browse (14)
             Vertbar (15)
             Inverserect (16)
             SelectFont (17)
             Topline (18)
             Fillwindow (19)
             Scroll (20)
             Dotline (21)
             ViewValue (22)
             ViewUnit (23)
             Fillcircle (24)
             Store (25)
             Restore (26)
             IconQuestion (27)
             Bmppfile(28)
             Popup (29)
             GraphSetup (30)
             GraphDraw (31)
             Textbox (32)
        end
    end