about summary refs log tree commit diff stats
path: root/dwm.h
Commit message (Collapse)AuthorAgeFilesLines
* made tag/view/toggle{tag,view} work on pointer to tags-array, there was the ↵Anselm R. Garbe2007-08-161-1/+2
| | | | need to define Key key[] not static to do this. split focusclient into focusnext/prev, fixed config.*.h's
* fififiAnselm R. Garbe2007-08-151-3/+3
|
* fixed a typoAnselm R. Garbe2007-08-141-1/+1
|
* tags should be persistent now during X server runAnselm R. Garbe2007-08-131-1/+1
|
* made Layout a static struct in layout.c, added some convenience getters in ↵Anselm R. Garbe2007-08-131-7/+4
| | | | layout.c, now lt->arrange accesses are not possible anymore, arrange() is the super-arrange function which sets up all layouts
* moved floating to layout.c, kept tile.c outsideAnselm R. Garbe2007-08-121-0/+2
|
* separated layout-specific stuff into separate .h and .c files which are ↵Anselm R. Garbe2007-08-111-4/+1
| | | | included in config.h resp. config.mk - this allows writing layouts for dwm without any need to patch existing code
* removed VRATIO, NMASTER, inc*(), renamed HRATIO into MASTER, see mailinglist ↵Anselm R. Garbe2007-08-101-5/+2
| | | | for details
* I introduced {H,V}RATIO and inc{h,v,}ratio() functions - the default behaves ↵Anselm R. Garbe2007-08-041-2/+2
| | | | like in dwm-4.3, config.arg.h shows how I prefer the ratio being handled (for the future I plan to change const char *arg into ..., and renaming Client into Win.)
* implemented ratio tile as described on the mailinglistAnselm R. Garbe2007-08-031-1/+2
|
* changed ban/unban implementation to not move the windows anymore, but ↵Anselm R. Garbe2007-07-281-0/+1
| | | | map/unmap them instead - PLEASE TEST THIS
* removed shiftview(), if you scroll the views in the tag area, you can also ↵Anselm R. Garbe2007-07-281-1/+0
| | | | | use Button1 instead removed focusclient([-]1) bound to scroll wheel - if you slightly move the mouse you will focus the first client anways which is in the way
* applied Jeroen Schot's shiftview patchAnselm R. Garbe2007-07-241-0/+1
|
* added an creatnotify event handlerAnselm R. Garbe2007-06-041-1/+3
|
* making variable declarations in dwm.h extern, this seems to be more ansi ↵Anselm R. Garbe2007-06-011-15/+15
| | | | compliant
* referred to LICENSE file 4.2Anselm R. Garbe2007-05-301-6/+1
|
* Jukka also belongs to Copyright holders after all he has contributed and ↵Anselm R. Garbe2007-05-301-0/+1
| | | | done for dwm, updated -v as well
* added nsz to copyright holders as well, because he did a lot recentlyAnselm R. Garbe2007-05-291-0/+1
|
* added anydot to Copyright holders, because he contributed a lot recentlyAnselm R. Garbe2007-05-291-0/+1
|
* applied anydot's 3 minor patches, thank you anydotAnselm R. Garbe2007-05-291-2/+1
|
* fooAnselm R. Garbe2007-05-231-1/+1
|
* made bar togglalbleAnselm R. Garbe2007-05-151-9/+12
|
* applied dfenze cleanups, fixed some comments in dwm.hAnselm R. Garbe2007-05-141-4/+5
|
* fixed the border issue for mplayer, ff is definately broken when using F11 ↵ 4.0Anselm R. Garbe2007-04-191-1/+1
| | | | (fullscreen mode)
* yet another fix of copyright compactisitionAnselm R. Garbe2007-04-131-1/+2
|
* some changes to updatesizehints, I don't change the aspect ratio algorithm ↵Anselm R. Garbe2007-03-011-1/+1
| | | | now - I can't think, it is a mess
* removed sendeventAnselm R. Garbe2007-02-261-1/+0
|
* removed an unnecessary newlineAnselm R. Garbe2007-02-241-1/+0
|
* removed superfluous externs (except for tags, because tags is defined in the ↵Anselm R. Garbe2007-02-241-53/+53
| | | | source)
* renamed untiled into floating, keeping tiled instead of tiling (afaik tiled ↵Anselm R. Garbe2007-02-221-4/+4
| | | | sounds more correct) - English speakers convinced me
* made Fnt an anonymous inner structAnselm R. Garbe2007-02-221-15/+15
|
* made Fnt an anonymous inner structAnselm R. Garbe2007-02-221-9/+7
|
* renamed versatile into untiledAnselm R. Garbe2007-02-221-4/+4
|
* merged focus{prev.next} into focusclient(1/-1)Anselm R. Garbe2007-02-221-2/+1
|
* made dwm.h more tidy (thx Jukka for the zoom() hint)Anselm R. Garbe2007-02-221-12/+11
|
* replaced Arg union with const char *arg, seems cleaner to me, even if we ↵Anselm R. Garbe2007-02-221-20/+15
| | | | need atoi() in some places
* fixing missing extern declars in dwm.h for {de,at}tach()Anselm R. Garbe2007-02-221-0/+2
|
* several changes, made togglemax extern and separated it from zoom() - moved ↵Anselm R. Garbe2007-02-221-15/+15
| | | | zoom() and togglemax() into layout.c, changed void (*func)(Arg *) into void (*func)(Arg), changed default keybindings of focusnext/focusprev and incmasterw to h/j/k/l accordingly, made keys in config*h appear alphabetically (special keys first), renamed resizemaster into incmasterw, renamed MASTER into MASTERWIDTH
* reverted accidental removal of sx, syAnselm R. Garbe2007-02-211-1/+1
|
* removed some global vars which should be static insteadAnselm R. Garbe2007-02-211-2/+2
|
* moved focus{next,prev} and nexttiled from client.c to layout.c (because ↵Anselm R. Garbe2007-02-211-4/+4
| | | | those are not client-specific), moved toggleversatile() from layout.c to client.c (because those are client-specific)
* fixed quoting and a comment 3.6Anselm R. Garbe2007-02-211-1/+1
|
* added draw.c again (except getcolor and setfont which are helpers in main.c)Anselm R. Garbe2007-02-201-4/+6
|
* separating drawsquare from drawtext, made drawtext externAnselm R. Garbe2007-02-201-0/+2
|
* split screen.c into layout.c and tag.c (because the view is an implicit ↵Anselm R. Garbe2007-02-201-8/+10
| | | | mixture of both)
* replaced togglelayout with setlayoutAnselm R. Garbe2007-02-191-1/+1
|
* renamed Client->versatile and Rule->versatile into Client->isversatile resp. ↵Anselm R. Garbe2007-02-191-1/+1
| | | | Rule->isversatile
* renames swim[ming] into versatileAnselm R. Garbe2007-02-191-3/+3
|
* renamed floating into swimming (this does not clash with C naming ↵Anselm R. Garbe2007-02-191-4/+3
| | | | conventions and fits better the fish symbol) - also in man page
* introduced Layout structAnselm R. Garbe2007-02-191-7/+12
|
href='#n955'>955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
format 70
"ranger" // ranger
  revision 20
  modified_by 2 "hut"
  // class settings
  //class diagram settings
  draw_all_relations default hide_attributes default hide_operations default hide_getset_operations default show_members_full_definition default show_members_visibility default show_members_stereotype default show_members_multiplicity default show_members_initialization default show_attribute_modifiers default member_max_width 0 show_parameter_dir default show_parameter_name default package_name_in_tab default class_drawing_mode default drawing_language default show_context_mode default auto_label_position default show_relation_modifiers default show_relation_visibility default show_infonote default shadow default show_stereotype_properties default
  //use case diagram settings
  package_name_in_tab default show_context default auto_label_position default draw_all_relations default class_drawing_mode default shadow default show_stereotype_properties default
  //sequence diagram settings
  show_full_operations_definition default write_horizontally default class_drawing_mode default drawing_language default draw_all_relations default shadow default show_stereotype_properties default
  //collaboration diagram settings
  show_full_operations_definition default show_hierarchical_rank default write_horizontally default drawing_language default package_name_in_tab default show_context default draw_all_relations default shadow default show_stereotype_properties default
  //object diagram settings
   write_horizontally default package_name_in_tab default show_context default auto_label_position default draw_all_relations default shadow default show_stereotype_properties default
  //component diagram settings
  package_name_in_tab default show_context default auto_label_position default draw_all_relations default shadow default
  draw_component_as_icon default show_component_req_prov default show_component_rea default show_stereotype_properties default
  //deployment diagram settings
  package_name_in_tab default show_context default write_horizontally default auto_label_position default draw_all_relations default shadow default
  draw_component_as_icon default show_component_req_prov default show_component_rea default show_stereotype_properties default
  //state diagram settings
  package_name_in_tab default show_context default auto_label_position default write_trans_label_horizontally default show_trans_definition default draw_all_relations default shadow default
  show_activities default region_horizontally default drawing_language default show_stereotype_properties default
  //activity diagram settings
  package_name_in_tab default show_context default show_opaque_action_definition default auto_label_position default write_flow_label_horizontally default draw_all_relations default shadow default
  show_infonote default drawing_language default show_stereotype_properties default
  
  classview 128002 "Classes"
    //class diagram settings
    draw_all_relations default hide_attributes default hide_operations default hide_getset_operations default show_members_full_definition default show_members_visibility default show_members_stereotype default show_members_multiplicity default show_members_initialization default show_attribute_modifiers default member_max_width 0 show_parameter_dir default show_parameter_name default package_name_in_tab default class_drawing_mode default drawing_language default show_context_mode default auto_label_position default show_relation_modifiers default show_relation_visibility default show_infonote default shadow default show_stereotype_properties default
    //collaboration diagram settings
    show_full_operations_definition default show_hierarchical_rank default write_horizontally default drawing_language default package_name_in_tab default show_context default draw_all_relations default shadow default show_stereotype_properties default
    //object diagram settings
     write_horizontally default package_name_in_tab default show_context default auto_label_position default draw_all_relations default shadow default show_stereotype_properties default
    //sequence diagram settings
    show_full_operations_definition default write_horizontally default class_drawing_mode default drawing_language default draw_all_relations default shadow default show_stereotype_properties default
    //state diagram settings
    package_name_in_tab default show_context default auto_label_position default write_trans_label_horizontally default show_trans_definition default draw_all_relations default shadow default
    show_activities default region_horizontally default drawing_language default show_stereotype_properties default
    //class settings
    //activity diagram settings
    package_name_in_tab default show_context default show_opaque_action_definition default auto_label_position default write_flow_label_horizontally default draw_all_relations default shadow default
    show_infonote default drawing_language default show_stereotype_properties default
    classdiagram 134530 "Overview"
      draw_all_relations no hide_attributes default hide_operations default hide_getset_operations default show_members_full_definition default show_members_visibility default show_members_stereotype default show_members_multiplicity default show_members_initialization default show_attribute_modifiers default member_max_width 0 show_parameter_dir default show_parameter_name default package_name_in_tab default class_drawing_mode default drawing_language default show_context_mode default auto_label_position default show_relation_modifiers default show_relation_visibility default show_infonote default shadow default show_stereotype_properties default
      size A4
    end

    sequencediagram 141058 "Basic Logic"
      show_full_operations_definition default write_horizontally default class_drawing_mode default drawing_language default draw_all_relations default shadow default show_stereotype_properties default
      overlapping_bars size A4
    end

    classdiagram 128002 "Displayable Hierarchy"
      draw_all_relations no hide_attributes yes hide_operations yes hide_getset_operations default show_members_full_definition default show_members_visibility default show_members_stereotype default show_members_multiplicity default show_members_initialization default show_attribute_modifiers default member_max_width 0 show_parameter_dir default show_parameter_name default package_name_in_tab default class_drawing_mode default drawing_language default show_context_mode default auto_label_position default show_relation_modifiers default show_relation_visibility default show_infonote default shadow default show_stereotype_properties default
      class_color yellow 
      size A4
    end

    class 128002 "Displayable"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 136322 // <aggregation>
	relation_ref 135938 // <aggregation>
      end

      operation 134530 "draw"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 134658 "press"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 134786 "click"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 134914 "destroy"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 135042 "resize"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      classrelation 143234 // <generalisation>
	relation 142850 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 143234 // <generalisation>
	  b parent class_ref 142210 // EnvironmentAware
      end

      classrelation 143362 // <generalisation>
	relation 142978 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 143362 // <generalisation>
	  b parent class_ref 141954 // FileManagerAware
      end

      classrelation 150018 // <generalisation>
	relation 149634 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 150018 // <generalisation>
	  b parent class_ref 142082 // SettingsAware
      end

      classrelation 170882 // <association>
	relation 169986 ----
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 170882 // <association>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 171010 // <association>
      end

      classrelation 171778 // <association>
	relation_ref 170370 // <association>
      end

      operation 149378 "finalize"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 149506 "color"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 149634 "contains_point"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 128130 "UI"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 128258 // <generalisation>
	relation 128258 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 128258 // <generalisation>
	  b parent class_ref 128386 // DisplayableContainer
      end

      operation 148482 "handle_mouse"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 148610 "handle_key"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 148738 "get_next_key"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 148866 "setup"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 148994 "setup"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 149122 "redraw"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 149250 "update_size"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 171138 "initialize"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 128258 "DefaultUI"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 128002 // <generalisation>
	relation 128002 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 128002 // <generalisation>
	  b parent class_ref 128130 // UI
      end

      classrelation 171906 // <association>
	relation 170498 ----
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 171906 // <association>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 172034 // <association>
      end

      classrelation 179970 // <aggregation>
	relation 178178 o---
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 179970 // <aggregation>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 180098 // <aggregation>
      end

      operation 171266 "open_console"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 171394 "scroll"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 128386 "DisplayableContainer"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 128386 // <generalisation>
	relation 128386 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 128386 // <generalisation>
	  b parent class_ref 128002 // Displayable
      end

      classrelation 136194 // <aggregation>
	relation 135938 o---
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 136194 // <aggregation>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 136322 // <aggregation>
      end

      operation 149762 "get_focused_obj"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 149890 "add_obj"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 135042 "TitleBar"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 172674 // <generalisation>
	relation 171010 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 172674 // <generalisation>
	  b parent class_ref 156034 // Widget
      end
    end

    class 135170 "FileList"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 136066 // <aggregation>
	relation_ref 135810 // <aggregation>
      end

      classrelation 172802 // <generalisation>
	relation 171138 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 172802 // <generalisation>
	  b parent class_ref 156034 // Widget
      end
    end

    class 135298 "FileListContainer"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 135554 // <generalisation>
	relation 135554 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 135554 // <generalisation>
	  b parent class_ref 128386 // DisplayableContainer
      end

      classrelation 135938 // <aggregation>
	relation 135810 o---
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 135938 // <aggregation>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 136066 // <aggregation>
      end

      classrelation 172930 // <generalisation>
	relation 171266 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 172930 // <generalisation>
	  b parent class_ref 156034 // Widget
      end
    end

    class 135426 "Console"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 172162 // <association>
	relation 170626 ----
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 172162 // <association>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 172290 // <association>
      end

      classrelation 172546 // <generalisation>
	relation 170882 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 172546 // <generalisation>
	  b parent class_ref 156034 // Widget
      end

      operation 163202 "open"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 163330 "close"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 163458 "clear"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 163586 "move"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 163714 "type_key"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 163842 "execute"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 141954 "FileManagerAware"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
    end

    class 142082 "SettingsAware"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
    end

    class 142210 "EnvironmentAware"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
    end

    class 148738 "Action"
      abstract visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
    end

    class 148866 "Command"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 163714 // <aggregation>
	relation_ref 162946 // <aggregation>
      end

      classrelation 170498 // <unidirectional association>
	relation 169730 --->
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 170498 // <unidirectional association>
	  b parent class_ref 148738 // Action
      end

      operation 164226 "execute"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 148994 "CommandList"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 163586 // <aggregation>
	relation 162946 o---
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 163586 // <aggregation>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 163714 // <aggregation>
      end

      classrelation 172034 // <association>
	relation_ref 170498 // <association>
      end

      classrelation 172290 // <association>
	relation_ref 170626 // <association>
      end

      operation 164354 "rebuild_paths"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 164482 "bind"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 149122 "Environment"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 171394 // <aggregation>
	relation 170242 o---
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 171394 // <aggregation>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 171522 // <aggregation>
      end

      classrelation 171650 // <association>
	relation 170370 ----
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 171650 // <association>
	  b role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 171778 // <association>
      end

      operation 171522 "garbage_collect"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 171650 "enter_dir"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 149378 "FM"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 156546 // <generalisation>
	relation 156162 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 156546 // <generalisation>
	  b parent class_ref 148738 // Action
      end

      classrelation 179714 // <unidirectional association>
	relation 177922 --->
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 179714 // <unidirectional association>
	  b parent class_ref 149122 // Environment
      end

      classrelation 179842 // <unidirectional association>
	relation 178050 --->
	  a role_name "" private
	    python "${comment}${self}${name} = ${value}
"
	    classrelation_ref 179842 // <unidirectional association>
	  b parent class_ref 128258 // DefaultUI
      end

      operation 141826 "initialize"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 141954 "loop"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 155906 "FileSystemObject"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 171522 // <aggregation>
	relation_ref 170242 // <aggregation>
      end

      classrelation 186754 // <association>
	relation_ref 184706 // <association>
      end

      operation 163970 "load"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end

      operation 164098 "go"
	public explicit_return_type ""
	nparams 0
	
	
	
	python_def "${@}${static}${abstract}def ${name}${(}${)}:
${docstring}${body}
"
	
      end
    end

    class 156034 "Widget"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
      classrelation 172418 // <generalisation>
	relation 170754 ---|>
	  a public
	    python "${type}"
	    classrelation_ref 172418 // <generalisation>
	  b parent class_ref 128002 // Displayable
      end

      classrelation 180098 // <aggregation>
	relation_ref 178178 // <aggregation>
      end
    end

    classinstance 134530 "cl"
      type class_ref 148994 // CommandList
      attributes
        end
      relations
        end
    end

    classinstance 134658 "console_cl"
      type class_ref 148994 // CommandList
      attributes
        end
      relations
        end
    end

    class 169218 "Main"
      visibility package 
      cpp_decl ""
      java_decl ""
      php_decl ""
      python_2_2 python_decl "class ${name}${inherit}:
${docstring}${members}
"
      idl_decl ""
      explicit_switch_type ""
      
    end
  end
end