Changeset d455537d3581589a1d2eb16bbf81aca68863c6de
- Timestamp:
- 30/10/10 12:11:52 (3 years ago)
- Children:
- e097a83094ea57e6da853734dcba35792548f2fc
- Parents:
- efa5c89b661fde3e18ba12ceb2ec83980d9ceb63
- git-author:
- Matias De la Puente <mfpuente.ar@…> (30/10/10 12:06:54)
- git-committer:
- Matias De la Puente <mfpuente.ar@…> (30/10/10 12:11:52)
- Location:
- gtkfrontend
- Files:
-
- 7 edited
-
addfiledialogview.vala (modified) (1 diff)
-
addprofiledialogview.vala (modified) (1 diff)
-
builderslist.vala (modified) (1 diff)
-
documentpageview.vala (modified) (1 diff)
-
documentpreferencespageview.vala (modified) (1 diff)
-
documentsview.vala (modified) (1 diff)
-
mainwindowview.vala (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gtkfrontend/addfiledialogview.vala
rb555a66 rd455537 87 87 88 88 //Bind properties 89 this.bind_property ("file-in-project-visible", _file_in_project_info_bar, "visible", BindingFlags.BIDIRECTIONAL);90 this.bind_property ("new-file-sensitive", _new_file_entry, "sensitive", BindingFlags.BIDIRECTIONAL);91 this.bind_property ("import-file-sensitive", _import_file_chooser, "sensitive", BindingFlags.BIDIRECTIONAL);92 this.bind_property ("accept-sensitive", _accept_button, "sensitive", BindingFlags.BIDIRECTIONAL);89 bind_property ("file-in-project-visible", _file_in_project_info_bar, "visible", BindingFlags.BIDIRECTIONAL); 90 bind_property ("new-file-sensitive", _new_file_entry, "sensitive", BindingFlags.BIDIRECTIONAL); 91 bind_property ("import-file-sensitive", _import_file_chooser, "sensitive", BindingFlags.BIDIRECTIONAL); 92 bind_property ("accept-sensitive", _accept_button, "sensitive", BindingFlags.BIDIRECTIONAL); 93 93 94 94 //Connect signals -
gtkfrontend/addprofiledialogview.vala
rf459951 rd455537 106 106 107 107 //Bind properties 108 this.bind_property ("warning-message", _warning_message_label, "label", BindingFlags.BIDIRECTIONAL);109 this.bind_property ("warning-message-visible", _warning_message_info_bar, "visible", BindingFlags.BIDIRECTIONAL);110 this.bind_property ("new-profile-sensitive", _new_profile_entry, "sensitive", BindingFlags.BIDIRECTIONAL);111 this.bind_property ("import-project-sensitive", _project_chooser, "sensitive", BindingFlags.BIDIRECTIONAL);112 this.bind_property ("import-profile-sensitive", _profiles_combo, "sensitive", BindingFlags.BIDIRECTIONAL);113 this.bind_property ("accept-sensitive", _accept_button, "sensitive", BindingFlags.BIDIRECTIONAL);108 bind_property ("warning-message", _warning_message_label, "label", BindingFlags.BIDIRECTIONAL); 109 bind_property ("warning-message-visible", _warning_message_info_bar, "visible", BindingFlags.BIDIRECTIONAL); 110 bind_property ("new-profile-sensitive", _new_profile_entry, "sensitive", BindingFlags.BIDIRECTIONAL); 111 bind_property ("import-project-sensitive", _project_chooser, "sensitive", BindingFlags.BIDIRECTIONAL); 112 bind_property ("import-profile-sensitive", _profiles_combo, "sensitive", BindingFlags.BIDIRECTIONAL); 113 bind_property ("accept-sensitive", _accept_button, "sensitive", BindingFlags.BIDIRECTIONAL); 114 114 115 115 //Connect signals -
gtkfrontend/builderslist.vala
r678078d rd455537 59 59 60 60 //Bind properties 61 this.bind_property ("current-extra-options", _extra_options_entry, "text", BindingFlags.BIDIRECTIONAL);61 bind_property ("current-extra-options", _extra_options_entry, "text", BindingFlags.BIDIRECTIONAL); 62 62 63 63 //Connect signals -
gtkfrontend/documentpageview.vala
r5faa4d3 rd455537 137 137 138 138 //Bind properties 139 this.bind_property ("tab-width", _source_view, "tab-width", BindingFlags.BIDIRECTIONAL);140 this.bind_property ("auto-indent", _source_view, "auto-indent", BindingFlags.BIDIRECTIONAL);141 this.bind_property ("highlight-current-line", _source_view, "highlight-current-line", BindingFlags.BIDIRECTIONAL);142 this.bind_property ("insert-spaces-instead-of-tabs", _source_view, "insert-spaces-instead-of-tabs", BindingFlags.BIDIRECTIONAL);143 this.bind_property ("show-line-numbers", _source_view, "show-line-numbers", BindingFlags.BIDIRECTIONAL);144 this.bind_property ("highlight-matching-brackets", _source_buffer, "highlight-matching-brackets", BindingFlags.BIDIRECTIONAL);145 this.bind_property ("search-bar-view-visible", _search_bar_view, "visible", BindingFlags.BIDIRECTIONAL);146 this.bind_property ("content-visible", _source_view, "visible", BindingFlags.BIDIRECTIONAL);139 bind_property ("tab-width", _source_view, "tab-width", BindingFlags.BIDIRECTIONAL); 140 bind_property ("auto-indent", _source_view, "auto-indent", BindingFlags.BIDIRECTIONAL); 141 bind_property ("highlight-current-line", _source_view, "highlight-current-line", BindingFlags.BIDIRECTIONAL); 142 bind_property ("insert-spaces-instead-of-tabs", _source_view, "insert-spaces-instead-of-tabs", BindingFlags.BIDIRECTIONAL); 143 bind_property ("show-line-numbers", _source_view, "show-line-numbers", BindingFlags.BIDIRECTIONAL); 144 bind_property ("highlight-matching-brackets", _source_buffer, "highlight-matching-brackets", BindingFlags.BIDIRECTIONAL); 145 bind_property ("search-bar-view-visible", _search_bar_view, "visible", BindingFlags.BIDIRECTIONAL); 146 bind_property ("content-visible", _source_view, "visible", BindingFlags.BIDIRECTIONAL); 147 147 148 148 //Connect signals -
gtkfrontend/documentpreferencespageview.vala
r15ee35d rd455537 73 73 74 74 //Bind properties 75 this.bind_property ("font-name", _source_font, "font-name", BindingFlags.BIDIRECTIONAL);76 this.bind_property ("auto-indent", _auto_indent_button, "active", BindingFlags.BIDIRECTIONAL);77 this.bind_property ("highlight-current-line", _highlight_current_line_button, "active", BindingFlags.BIDIRECTIONAL);78 this.bind_property ("insert-spaces-instead-of-tabs", _insert_spaces_instead_of_tabs_button, "active", BindingFlags.BIDIRECTIONAL);79 this.bind_property ("show-line-numbers", _show_line_numbers_button, "active", BindingFlags.BIDIRECTIONAL);80 this.bind_property ("highlight-matching-brackets", _highlight_matching_brackets_button, "active", BindingFlags.BIDIRECTIONAL);81 this.bind_property ("wrap-mode", _wrap_mode_button, "active", BindingFlags.BIDIRECTIONAL);75 bind_property ("font-name", _source_font, "font-name", BindingFlags.BIDIRECTIONAL); 76 bind_property ("auto-indent", _auto_indent_button, "active", BindingFlags.BIDIRECTIONAL); 77 bind_property ("highlight-current-line", _highlight_current_line_button, "active", BindingFlags.BIDIRECTIONAL); 78 bind_property ("insert-spaces-instead-of-tabs", _insert_spaces_instead_of_tabs_button, "active", BindingFlags.BIDIRECTIONAL); 79 bind_property ("show-line-numbers", _show_line_numbers_button, "active", BindingFlags.BIDIRECTIONAL); 80 bind_property ("highlight-matching-brackets", _highlight_matching_brackets_button, "active", BindingFlags.BIDIRECTIONAL); 81 bind_property ("wrap-mode", _wrap_mode_button, "active", BindingFlags.BIDIRECTIONAL); 82 82 83 83 //Connect signals -
gtkfrontend/documentsview.vala
r2fc76a3 rd455537 98 98 99 99 //Bind properties 100 this.bind_property ("save-sensitive", _action_group.get_action ("SaveDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);101 this.bind_property ("save-as-sensitive", _action_group.get_action ("SaveAsDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);102 this.bind_property ("print-sensitive", _action_group.get_action ("PrintDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);103 this.bind_property ("undo-sensitive", _action_group.get_action ("UndoDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);104 this.bind_property ("redo-sensitive", _action_group.get_action ("RedoDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);105 this.bind_property ("cut-sensitive", _action_group.get_action ("CutDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);106 this.bind_property ("copy-sensitive", _action_group.get_action ("CopyDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);107 this.bind_property ("paste-sensitive", _action_group.get_action ("PasteDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);108 this.bind_property ("search-sensitive", _action_group.get_action ("SearchDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL);109 this.bind_property ("save-all-sensitive", _action_group.get_action ("SaveAllDocumentsAction"), "sensitive", BindingFlags.BIDIRECTIONAL);110 this.bind_property ("close-all-sensitive", _action_group.get_action ("CloseAllDocumentsAction"), "sensitive", BindingFlags.BIDIRECTIONAL);111 this.bind_property ("syntax-highlight-menu-sensitive", _action_group.get_action ("SyntaxHighlightMenuAction"), "sensitive", BindingFlags.BIDIRECTIONAL);100 bind_property ("save-sensitive", _action_group.get_action ("SaveDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 101 bind_property ("save-as-sensitive", _action_group.get_action ("SaveAsDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 102 bind_property ("print-sensitive", _action_group.get_action ("PrintDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 103 bind_property ("undo-sensitive", _action_group.get_action ("UndoDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 104 bind_property ("redo-sensitive", _action_group.get_action ("RedoDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 105 bind_property ("cut-sensitive", _action_group.get_action ("CutDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 106 bind_property ("copy-sensitive", _action_group.get_action ("CopyDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 107 bind_property ("paste-sensitive", _action_group.get_action ("PasteDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 108 bind_property ("search-sensitive", _action_group.get_action ("SearchDocumentAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 109 bind_property ("save-all-sensitive", _action_group.get_action ("SaveAllDocumentsAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 110 bind_property ("close-all-sensitive", _action_group.get_action ("CloseAllDocumentsAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 111 bind_property ("syntax-highlight-menu-sensitive", _action_group.get_action ("SyntaxHighlightMenuAction"), "sensitive", BindingFlags.BIDIRECTIONAL); 112 112 113 113 //Signals -
gtkfrontend/mainwindowview.vala
r6ceb9b5 rd455537 88 88 89 89 //Bind Properties 90 this.bind_property ("show-side-panel-active", _action_group.get_action ("ShowSidePanelAction") as ToggleAction, "active", BindingFlags.BIDIRECTIONAL);91 this.bind_property ("side-panel-visible", _side_panel, "visible", BindingFlags.BIDIRECTIONAL);92 this.bind_property ("show-bottom-panel-active", _action_group.get_action ("ShowBottomPanelAction") as ToggleAction, "active", BindingFlags.BIDIRECTIONAL);93 this.bind_property ("bottom-panel-visible", _bottom_panel, "visible", BindingFlags.BIDIRECTIONAL);90 bind_property ("show-side-panel-active", _action_group.get_action ("ShowSidePanelAction") as ToggleAction, "active", BindingFlags.BIDIRECTIONAL); 91 bind_property ("side-panel-visible", _side_panel, "visible", BindingFlags.BIDIRECTIONAL); 92 bind_property ("show-bottom-panel-active", _action_group.get_action ("ShowBottomPanelAction") as ToggleAction, "active", BindingFlags.BIDIRECTIONAL); 93 bind_property ("bottom-panel-visible", _bottom_panel, "visible", BindingFlags.BIDIRECTIONAL); 94 94 } 95 95
Note: See TracChangeset
for help on using the changeset viewer.

