<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                合規國際互聯網加速 OSASE為企業客戶提供高速穩定SD-WAN國際加速解決方案。 廣告
                # QDesignerFormWindowManagerInterface Class Reference ## [[QtDesigner](index.htm) module] 該QDesignerFormWindowManagerInterface類允許你操作的窗口形式在Qt Designer中收集和控制的Qt Designer的表格編輯操作。[More...](#details) 繼承[QObject](qobject.html)。 ### Methods * `__init__ (self, QObject?parent?=?None)` * `QAction actionAdjustSize (self)` * `QAction actionBreakLayout (self)` * `QAction actionCopy (self)` * `QAction actionCut (self)` * `QAction actionDelete (self)` * `QAction actionFormLayout (self)` * `QAction actionGridLayout (self)` * `QAction actionHorizontalLayout (self)` * `QAction actionLower (self)` * `QAction actionPaste (self)` * `QAction actionRaise (self)` * `QAction actionRedo (self)` * `QAction actionSelectAll (self)` * `QAction actionSimplifyLayout (self)` * `QAction actionSplitHorizontal (self)` * `QAction actionSplitVertical (self)` * `QAction actionUndo (self)` * `QAction actionVerticalLayout (self)` * `QDesignerFormWindowInterface activeFormWindow (self)` * `addFormWindow (self, QDesignerFormWindowInterface?formWindow)` * `QDesignerFormEditorInterface core (self)` * `QDesignerFormWindowInterface createFormWindow (self, QWidget?parent?=?None, Qt.WindowFlags?flags?=?0)` * `QDesignerFormWindowInterface formWindow (self, int?index)` * `int formWindowCount (self)` * `removeFormWindow (self, QDesignerFormWindowInterface?formWindow)` * `setActiveFormWindow (self, QDesignerFormWindowInterface?formWindow)` ### Qt Signals * `void activeFormWindowChanged (QDesignerFormWindowInterface *)` * `void formWindowAdded (QDesignerFormWindowInterface *)` * `void formWindowRemoved (QDesignerFormWindowInterface *)` * * * ## Detailed Description 該QDesignerFormWindowManagerInterface類允許你操作的窗口形式在Qt Designer中收集和控制的Qt Designer的表格編輯操作。 QDesignerFormWindowManagerInterface不打算直接實例化。_Qt Designer_使用表單窗口管理器來控制各種形式的窗口在其工作區。你可以檢索界面_Qt Designer_的使用構成了窗口管理器[QDesignerFormEditorInterface.formWindowManager](qdesignerformeditorinterface.html#formWindowManager)()函數。例如: ``` QDesignerFormWindowManagerInterface *manager = 0; [QDesignerFormWindowInterface](qdesignerformwindowinterface.html) *formWindow = 0; manager = formEditor->formWindowManager(); formWindow = manager->formWindow(0); manager->setActiveFormWindow(formWindow); ``` 當實現一個自定義的widget插件,一個指向_Qt Designer_目前的[QDesignerFormEditorInterface](qdesignerformeditorinterface.html)對象(`formEditor`在上面的例子)是由提供[QDesignerCustomWidgetInterface.initialize](qdesignercustomwidgetinterface.html#initialize)( )函數的參數。您必須在子類[QDesignerCustomWidgetInterface](qdesignercustomwidgetinterface.html)為你的插件暴露在Qt Designer中。 表格窗口管理器界面提供了[createFormWindow](qdesignerformwindowmanagerinterface.html#createFormWindow)( )函數,使您能夠創建一個新的窗體窗口,您可以添加到窗體的窗口,該管理器維護的收集,使用[addFormWindow](qdesignerformwindowmanagerinterface.html#addFormWindow)()槽。它也提供了[formWindowCount](qdesignerformwindowmanagerinterface.html#formWindowCount)( )函數返回當前經理人的控制之下形式的窗口的數量,[formWindow](qdesignerformwindowmanagerinterface.html#formWindow)()函數返回與給定的索引相關聯的形式的窗口,并且[activeFormWindow](qdesignerformwindowmanagerinterface.html#activeFormWindow)( )函數返回當前選定窗體窗口。該[removeFormWindow](qdesignerformwindowmanagerinterface.html#removeFormWindow)( )插槽可讓您減少表格的窗口管理器必須保持數,以及[setActiveFormWindow](qdesignerformwindowmanagerinterface.html#setActiveFormWindow)()槽允許您更改窗體窗口焦點_Qt Designer_的工作空間。 此外, QDesignerFormWindowManagerInterface包含的函數的集合,使您能夠干預和控制_Qt Designer_的表單編輯操作。所有這些函數返回原來的動作,從而有可能進一步干預后傳播的功能。 最后,該接口提供了當表單窗口被加入其中發射三種信號,當當前選擇的窗口形式的變化時,或者當一個窗口的形式被除去,分別。所有的信號進行有問題的窗口形式作為其參數。 * * * ## Method Documentation ``` QDesignerFormWindowManagerInterface.__init__ (self, QObject?parent?=?None) ``` 該_parent_的說法,如果不是沒有,原因_self_通過Qt的,而不是PyQt的擁有。 構造一個接口與給定的_parent_表單窗口管理器。 ``` QAction QDesignerFormWindowManagerInterface.actionAdjustSize (self) ``` [ 允許你進行干預和控制_Qt Designer_的“調整大小”的行動。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionBreakLayout (self) ``` [ 允許你進行干預和控制_Qt Designer_的“破布局”動作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionCopy (self) ``` [ 允許你進行干預和控制_Qt Designer_的“復制”操作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionCut (self) ``` [ 允許你進行干預和控制_Qt Designer_的“切”的動作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionDelete (self) ``` [ 允許你進行干預和控制_Qt Designer_的“刪除”操作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionFormLayout (self) ``` [ 允許你進行干預和控制_Qt Designer_的“窗體布局”動作。該函數返回原來的動作。 FormWindowManagerPrivateMap * fwmpm = g_FormWindowManagerPrivateMap (); 此功能被引入Qt的4.4 。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionGridLayout (self) ``` [ 允許你進行干預和控制,為在表單窗口網格布局的要求_Qt Designer_的工作空間。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionHorizontalLayout (self) ``` [ 允許你進行干預和控制,為在表單窗口水平布局的要求_Qt Designer_的工作空間。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionLower (self) ``` [ 允許你進行干預和控制降低窗體窗口的作用_Qt Designer_的工作空間。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionPaste (self) ``` [ 允許你進行干預和控制_Qt Designer_的“粘貼”操作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionRaise (self) ``` [ 允許你進行干預和控制在一個窗口的形式籌集的作用_Qt Designer_的工作空間。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionRedo (self) ``` [ 允許你進行干預和控制_Qt Designer_的“重做”操作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionSelectAll (self) ``` [ 允許你進行干預和控制_Qt Designer_的“全選”操作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionSimplifyLayout (self) ``` [ 允許你進行干預和控制_Qt Designer_的“簡化布局”動作。該函數返回原來的動作。 此功能被引入Qt的4.4 。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionSplitHorizontal (self) ``` [ 允許你進行干預和控制_Qt Designer_的“水平分割”的行動。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionSplitVertical (self) ``` [ 允許你進行干預和控制_Qt Designer_的“垂直拆分”操作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionUndo (self) ``` [ 允許你進行干預和控制_Qt Designer_的“撤消”操作。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QAction QDesignerFormWindowManagerInterface.actionVerticalLayout (self) ``` [ 允許你進行干預和控制,為在表單窗口的垂直布局的要求_Qt Designer_的工作空間。該函數返回原來的動作。 ](qaction.html) [**See also**](qaction.html) [QAction](qaction.html)。 ``` QDesignerFormWindowInterface QDesignerFormWindowManagerInterface.activeFormWindow (self) ``` [ 返回當前活動窗體的窗口_Qt Designer_的工作空間。 ](qdesignerformwindowinterface.html) [**See also**](qdesignerformwindowinterface.html) [setActiveFormWindow](qdesignerformwindowmanagerinterface.html#setActiveFormWindow)()和[removeFormWindow](qdesignerformwindowmanagerinterface.html#removeFormWindow)( ) 。 ``` QDesignerFormWindowManagerInterface.addFormWindow (self, QDesignerFormWindowInterface?formWindow) ``` 這種方法也是一個Qt槽與C + +的簽名`void addFormWindow(QDesignerFormWindowInterface *)`。 將給定_formWindow_在窗口的集合,_Qt Designer_的形式的窗口管理器維護。 **See also** [formWindowAdded](qdesignerformwindowmanagerinterface.html#formWindowAdded)( ) 。 ``` QDesignerFormEditorInterface QDesignerFormWindowManagerInterface.core (self) ``` [](qdesignerformeditorinterface.html) [返回一個指針_Qt Designer_目前的](qdesignerformeditorinterface.html)[QDesignerFormEditorInterface](qdesignerformeditorinterface.html)對象。 ``` QDesignerFormWindowInterface QDesignerFormWindowManagerInterface.createFormWindow (self, QWidget?parent?=?None, Qt.WindowFlags?flags?=?0) ``` [ 該_parent_的說法,如果不是沒有,原因_self_通過Qt的,而不是PyQt的擁有。 創建一個窗體窗口與給定_parent_和給定的窗口_flags_。 ](qdesignerformwindowinterface.html) [**See also**](qdesignerformwindowinterface.html) [addFormWindow](qdesignerformwindowmanagerinterface.html#addFormWindow)( ) 。 ``` QDesignerFormWindowInterface QDesignerFormWindowManagerInterface.formWindow (self, int?index) ``` [ 返回窗口的形式在給定的_index_。 ](qdesignerformwindowinterface.html) [**See also**](qdesignerformwindowinterface.html) [setActiveFormWindow](qdesignerformwindowmanagerinterface.html#setActiveFormWindow)()和[removeFormWindow](qdesignerformwindowmanagerinterface.html#removeFormWindow)( ) 。 ``` int QDesignerFormWindowManagerInterface.formWindowCount (self) ``` 返回的維護形式的窗口數量_Qt Designer_的形成窗口管理器。 ``` QDesignerFormWindowManagerInterface.removeFormWindow (self, QDesignerFormWindowInterface?formWindow) ``` 這種方法也是一個Qt槽與C + +的簽名`void removeFormWindow(QDesignerFormWindowInterface *)`。 刪除給定的_formWindow_從窗戶的集合,_Qt Designer_的形式的窗口管理器維護。 **See also** [formWindow](qdesignerformwindowmanagerinterface.html#formWindow)()和[formWindowRemoved](qdesignerformwindowmanagerinterface.html#formWindowRemoved)( ) 。 ``` QDesignerFormWindowManagerInterface.setActiveFormWindow (self, QDesignerFormWindowInterface?formWindow) ``` 這種方法也是一個Qt槽與C + +的簽名`void setActiveFormWindow(QDesignerFormWindowInterface *)`。 設置給定_formWindow_要在當前活動窗體的窗口_Qt Designer_的工作空間。 **See also** [activeFormWindow](qdesignerformwindowmanagerinterface.html#activeFormWindow)()和[activeFormWindowChanged](qdesignerformwindowmanagerinterface.html#activeFormWindowChanged)( ) 。 * * * ## Qt Signal Documentation ``` void activeFormWindowChanged (QDesignerFormWindowInterface *) ``` 這是該信號的默認超載。 這個信號被發射時,在當前激活的形式窗口的內容_Qt Designer_工作空間的改變。一個指針,指向當前活動_formWindow_被作為參數傳遞。 **See also** [activeFormWindow](qdesignerformwindowmanagerinterface.html#activeFormWindow)( ) 。 ``` void formWindowAdded (QDesignerFormWindowInterface *) ``` 這是該信號的默認超載。 當一個新的窗體窗口被添加到窗口的集合,這個信號被發射的_Qt Designer_的形式的窗口管理器維護。一個指向新_formWindow_被作為參數傳遞。 **See also** [addFormWindow](qdesignerformwindowmanagerinterface.html#addFormWindow)()和[setActiveFormWindow](qdesignerformwindowmanagerinterface.html#setActiveFormWindow)( ) 。 ``` void formWindowRemoved (QDesignerFormWindowInterface *) ``` 這是該信號的默認超載。 當一個表單窗口從窗口的集合中移除這個信號被發射的_Qt Designer_的形式的窗口管理器維護。一個指針,指向被刪除_formWindow_被作為參數傳遞。 **See also** [removeFormWindow](qdesignerformwindowmanagerinterface.html#removeFormWindow)( ) 。
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看