青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆-341  評論-2670  文章-0  trackbacks-0
    今天為GacUI寫了一個新的Demo,展示了一些可以自動排版的按鈕。主要的設想就是在窗口上放一個表格,分成兩行兩列。上面的按鈕占滿一整行,下面兩個單元格放兩個按鈕。然后就可以設置每個行和列占整個表格的比例,在這個Demo里面都設置成50%。這樣每當窗口縮放的時候,按鈕的位置也會隨之重新排版。然后設置表格充滿整個窗口,這樣窗口的最小值就會被表格的內容所限定,這樣試圖把窗口縮小的時候,就會有一個最小的尺寸限制著,至始至終保證所有的東西都可以顯示出來,不會因為窗口太小而只顯示一半。按鈕也是同樣,可以設置它必須顯示所有的文字。所有的過程一旦配置好之后,計算尺寸的時候所有的操作都會自動做,程序員不需要為窗口的Resize事件寫任何代碼。

    下面先放圖。

    第一個圖是窗口剛剛打開的時候的樣子。因為Demo里面沒有設置窗口的尺寸,所以一上來就自動變成了最小的尺寸——并且剛好可以顯示所有的內容。



    第二個圖是窗口放大之后的樣子。Disable按鈕被按下了,所以上面的按鈕就變灰。



    這個Demo使用了Direct2D渲染器,所有的繪制過程都十分高速。而且表格的尺寸計算也是經過優化的,在拖放窗口的時候十分流暢。事實上按鈕的漸變啊、邊框啊、文字等等也是借助表格排版的。由于尺寸計算過于復雜,除了表格之外整個框架都不保存控件的尺寸,所有的東西都在需要的時候——譬如說渲染的時候,譬如說計算鼠標點中的位置——的那一刻才開始算。因此無論是鼠標滑過,或者是窗口拖放,都拼命地執行很多虛函數。可見C++的虛函數的性能之高,幾乎永遠都不會成為程序的瓶頸。下面來看代碼:

#include "..\..\Public\Source\GacUIIncludes.h"
#include 
<Windows.h>

int CALLBACK WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int CmdShow)
{
    
return SetupWindowsDirect2DRenderer();
}

class EnableDisableWindow : public GuiWindow
{
private:
    GuiButton
*            buttonTarget;
    GuiButton
*            buttonEnable;
    GuiButton
*            buttonDisable;

    
void buttonEnable_OnClick(GuiGraphicsComposition* sender, GuiEventArgs& arguments)
    {
        buttonTarget
->SetEnabled(true);
    }

    
void buttonDisable_OnClick(GuiGraphicsComposition* sender, GuiEventArgs& arguments)
    {
        buttonTarget
->SetEnabled(false);
    }
public:
    EnableDisableWindow()
        :GuiWindow(GetCurrentTheme()
->CreateWindowStyle())
    {
        
this->SetText(L"Controls.Button.EnableDisable");
        
// limit the size that the window should always show the whole content without cliping it
        this->GetContainerComposition()->SetMinSizeLimitation(GuiGraphicsComposition::LimitToElementAndChildren);

        
// create a table to layout the 3 buttons
        GuiTableComposition* table=new GuiTableComposition;
        
// make the table to have 2 rows
        table->SetRowsAndColumns(22);
        table
->SetRowOption(0, GuiCellOption::PercentageOption(0.5));
        table
->SetRowOption(1, GuiCellOption::PercentageOption(0.5));
        table
->SetColumnOption(0, GuiCellOption::PercentageOption(0.5));
        table
->SetColumnOption(1, GuiCellOption::PercentageOption(0.5));
        
// dock the table to fill the window
        table->SetAlignmentToParent(Margin(10101010));
        
// add the table to the window;
        this->GetContainerComposition()->AddChild(table);

        
// add the target button
        {
            GuiCellComposition
* cell=new GuiCellComposition;
            table
->AddChild(cell);
            
// this cell is the top cell
            cell->SetSite(0012);

            buttonTarget
=g::NewButton();
            buttonTarget
->SetText(L"Enable or disable me using the buttons below!");
            
// ensure that the buttonTarget display the whole text
            buttonTarget->GetBoundsComposition()->SetMinSizeLimitation(GuiGraphicsComposition::LimitToElementAndChildren);
            
// dock the button to fill the cell
            buttonTarget->GetBoundsComposition()->SetAlignmentToParent(Margin(0003));
            
// add the button to the cell
            cell->AddChild(buttonTarget->GetBoundsComposition());
        }

        
// add the enable button
        {
            GuiCellComposition
* cell=new GuiCellComposition;
            table
->AddChild(cell);
            
// this cell is the bottom left cell
            cell->SetSite(1011);

            buttonEnable
=g::NewButton();
            buttonEnable
->SetText(L"Enable");
            buttonEnable
->GetBoundsComposition()->SetMinSizeLimitation(GuiGraphicsComposition::LimitToElementAndChildren);
            buttonEnable
->GetBoundsComposition()->SetAlignmentToParent(Margin(0330));
            buttonEnable
->Clicked.AttachMethod(this&EnableDisableWindow::buttonEnable_OnClick);
            cell
->AddChild(buttonEnable->GetBoundsComposition());
        }

        
// add the disable button
        {
            GuiCellComposition
* cell=new GuiCellComposition;
            table
->AddChild(cell);
            
// this cell is the bottom right cell
            cell->SetSite(1111);

            buttonDisable
=g::NewButton();
            buttonDisable
->SetText(L"Disable");
            buttonDisable
->GetBoundsComposition()->SetMinSizeLimitation(GuiGraphicsComposition::LimitToElementAndChildren);
            buttonDisable
->GetBoundsComposition()->SetAlignmentToParent(Margin(3300));
            buttonDisable
->Clicked.AttachMethod(this&EnableDisableWindow::buttonDisable_OnClick);
            cell
->AddChild(buttonDisable->GetBoundsComposition());
        }

        
// change the button font
        {
            FontProperties font;

            font
=buttonTarget->GetFont();
            font.size
=20;
            buttonTarget
->SetFont(font);
            buttonEnable
->SetFont(font);
            buttonDisable
->SetFont(font);
        }

        
// call this to calculate the size immediately if any indirect content in the table changes
        
// so that the window can calcaulte its correct size before calling the MoveToScreenCenter()
        table->UpdateCellBounds();
        
// update the size
        this->SetBounds(Rect());
        
// move to the screen center
        this->MoveToScreenCenter();
    }

    
~EnableDisableWindow()
    {
    }
};

void GuiMain()
{
    GuiWindow
* window=new EnableDisableWindow();
    GetApplication()
->Run(window);
    delete window;
}

    代碼里面充滿了注釋,而且主要的內容也在上面介紹了,在這里我就不羅嗦了。所有的代碼都可以在http://gac.codeplex.com中,下載最新的代碼,然后在Libraries\GacUI\GacUIDemo\GacUIDemo.sln下面找到。
posted on 2012-04-25 02:46 陳梓瀚(vczh) 閱讀(2371) 評論(5)  編輯 收藏 引用 所屬分類: GacUI

評論:
# re: GacUI新Demo:按鈕和排版[未登錄] 2012-04-25 04:02 | me
superstar!  回復  更多評論
  
# re: GacUI新Demo:按鈕和排版[未登錄] 2012-04-25 18:20 | diryboy
好厲害!  回復  更多評論
  
# re: GacUI新Demo:按鈕和排版[未登錄] 2012-04-27 05:53 | koobin
是不是用Win7的API寫的?在XP下還運行不了?koobin@126.com  回復  更多評論
  
# re: GacUI新Demo:按鈕和排版 2012-04-27 06:09 | 陳梓瀚(vczh)
@koobin
應該只有剪貼板用到了win7的一個api,只要在xp的時候禁用即可。如果放在XP,最大的犧牲是沒有顯卡加速,要采用GDI來繪制,讓本來就慢的XP變得更慢了。  回復  更多評論
  
# re: GacUI新Demo:按鈕和排版 2013-05-15 23:28 | tb
厲害啊   回復  更多評論
  
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美日韩情趣电影| 久久人人精品| 国产精品日韩欧美一区二区三区| 久久aⅴ国产欧美74aaa| 一本色道久久精品| 亚洲午夜精品| 国产人久久人人人人爽| 国内在线观看一区二区三区 | 久久久噜噜噜久久中文字幕色伊伊 | 一本色道久久综合一区| 欧美成人精品高清在线播放| 久久久久久九九九九| 欧美国产综合视频| 日韩视频二区| 久久久久久久国产| 欧美视频一区| 亚洲裸体俱乐部裸体舞表演av| 亚洲精品久久久久久久久久久| 久久九九久精品国产免费直播| 久久综合九色综合久99| 欧美激情一区二区三级高清视频| 国产精品免费小视频| 99在线观看免费视频精品观看| 久久久噜噜噜久久狠狠50岁| 在线综合亚洲欧美在线视频| 久久亚洲国产成人| 1024精品一区二区三区| 欧美亚洲三区| 午夜激情一区| 久久er99精品| 亚洲男女自偷自拍| 国产欧美日韩三级| 性做久久久久久久久| 中日韩午夜理伦电影免费| 欧美日韩精品一区二区三区四区 | 亚洲国产成人在线| 免费久久99精品国产自| 久久精品久久综合| 在线免费高清一区二区三区| 免费成人在线观看视频| 久久蜜臀精品av| 亚洲精品一区二区三区av| 亚洲日韩欧美视频一区| 你懂的视频欧美| 亚洲一级黄色片| 午夜在线一区二区| 亚洲国产日本| 亚洲香蕉成视频在线观看| 欧美国产一区二区在线观看 | 国产农村妇女精品一区二区| 午夜欧美精品| 欧美不卡在线| 久久久久.com| 欧美日韩一区二区三区四区在线观看 | 久久精品九九| 欧美精品午夜| 久久频这里精品99香蕉| 欧美日韩第一区日日骚| 久久免费视频这里只有精品| 欧美**人妖| 久久久噜噜噜久久中文字免| 欧美视频在线观看| 美女脱光内衣内裤视频久久影院 | 亚洲福利视频网站| 亚洲综合导航| 亚洲综合首页| 欧美午夜精品久久久久久久| 免费观看在线综合色| 一区二区三区在线高清| 久久久蜜桃一区二区人| 久久蜜桃资源一区二区老牛| 国产亚洲欧美中文| 久久成人免费| 欧美+日本+国产+在线a∨观看| 狠色狠色综合久久| 老牛嫩草一区二区三区日本| 欧美日本一道本| 亚洲欧洲精品天堂一级| 一区二区三区日韩欧美| 国产精品欧美日韩一区| 亚洲欧美日韩成人高清在线一区| 午夜精品久久久久久久| 国产在线一区二区三区四区 | 另类亚洲自拍| 日韩亚洲欧美成人一区| 国产欧美日韩在线视频| 久久成人国产| 亚洲激情自拍| 久久精品国产亚洲aⅴ| 一区二区三区在线视频播放| 欧美精品一区三区在线观看| av成人免费在线观看| 欧美chengren| 久久精品女人天堂| 亚洲天堂av综合网| 伊人久久综合| 国产精品一区在线观看你懂的| 欧美在线免费一级片| 99re6热在线精品视频播放速度 | 午夜在线a亚洲v天堂网2018| 91久久精品日日躁夜夜躁国产| 国产精品成人一区二区三区吃奶| 久久久久久久久久看片| 欧美在线影院在线视频| 亚洲字幕一区二区| 99精品热视频| 99精品视频一区| 99精品热视频| 夜夜嗨av一区二区三区网站四季av | 另类亚洲自拍| 午夜在线视频观看日韩17c| 中文日韩在线| 午夜视频在线观看一区| 一本色道久久综合亚洲精品婷婷| 亚洲免费观看高清完整版在线观看熊 | 久久精品国产91精品亚洲| 亚洲国产精品成人| 看欧美日韩国产| 久久精品视频在线播放| 亚洲深夜福利在线| 亚洲欧美日韩综合aⅴ视频| 中文日韩在线视频| 一区二区三区精品在线| 亚洲视频每日更新| 欧美亚洲系列| 欧美高清在线一区| 亚洲视频在线二区| 欧美在线黄色| 国产精品盗摄一区二区三区| 欧美日韩一区二区三区在线 | 国产精品国内视频| 亚洲黄色片网站| 久久久久高清| 亚洲欧美另类国产| 免费观看日韩| 在线成人亚洲| 欧美一级在线亚洲天堂| 欧美视频在线观看视频极品| 国产精品视频专区| 亚洲视频免费观看| 美女视频黄免费的久久| 久久精品视频在线看| 欧美黄色小视频| 久久久久久高潮国产精品视| 国产小视频国产精品| 亚洲欧美日韩精品久久| 亚洲午夜在线观看| 欧美亚洲日本国产| 亚洲欧美日本伦理| 国产日产欧美a一级在线| 久久精品国产久精国产一老狼| 欧美在线视频网站| 亚洲精品视频在线观看免费| 一区二区三区欧美在线| 国产日韩欧美高清免费| 亚洲国产专区校园欧美| 麻豆久久精品| 亚洲国产一区二区三区a毛片| 免费一级欧美在线大片| 欧美电影美腿模特1979在线看| 亚洲国产精品123| 亚洲国产精品精华液2区45| 欧美日韩成人在线播放| 亚洲欧美精品| 久久综合色婷婷| 亚洲一区在线观看视频| 午夜亚洲一区| 99精品欧美一区二区三区 | 亚洲欧美制服中文字幕| 香蕉免费一区二区三区在线观看 | 国产精品日韩久久久| 久久久久国产免费免费| 欧美精品一区在线| 久久色中文字幕| 欧美午夜精品久久久久久超碰| 免费影视亚洲| 国产无遮挡一区二区三区毛片日本| 亚洲欧美资源在线| 麻豆精品网站| 欧美亚洲视频在线看网址| 你懂的亚洲视频| 久久蜜桃资源一区二区老牛| 国产精品乱码久久久久久| 欧美国产三区| 亚洲第一网站| 久久久久久久综合狠狠综合| 欧美在线黄色| 国产日韩欧美制服另类| 亚洲视频在线视频| 香蕉久久夜色精品| 国产精品久久午夜| 亚洲午夜视频| 久久成人国产| 黄色一区三区| 男女激情久久| 99成人在线| 久久成人资源| 亚洲国产综合在线看不卡| 欧美伦理视频网站| 亚洲一区尤物|