D と gtkd を試しています。今、私はこのボタンを持っています。それをクリックすると、他のウィジェットで機能を開始したいと思います。これどうやってするの?
これは、機能しているが、まだ実行していないコードの例です(SearchButtonを押すと、SearchResultsGridの関数が呼び出される必要があります):
import gtk.Button;
import gtk.SearchEntry;
import gtk.Main;
import gtk.MainWindow;
import gtk.VBox;
import gtk.Grid;
import std.stdio;
import gdk.Event;
import gtk.Widget;
void main(string[] args) {
Main.init(args);
MainWindow win = new MainWindow("Example");
win.setDefaultSize(200, 100);
Box hbox = new Box(Orientation.HORIZONTAL, 2);
hbox.add(new SearchButton("Search"));
hbox.add(new SearchResultsGrid());
win.add(hbox);
win.showAll();
Main.run();
}
class SearchButton : Button {
this(in string text) {
super(text);
modifyFont("Arial", 14);
}
private bool search(Event event, Widget widget) {
return true;
}}
class StarterButton : Button {
this(in string text) {
super(text);
modifyFont("Arial", 14);
addOnButtonRelease(&startProgramm);
}
private bool startProgramm(Event event, Widget widget)
{
return true;
} }
class SearchResultsGrid : Grid {
public void showResults() {
attach( new StarterButton("Start"), 1,1,1,1);
attach( new StarterButton("Start2"), 2,1,1,1);
}}
したがって、SearchResultsGrid で showResults をトリガーしたいのですが、私の考えは、SearchResultsGrid オブジェクトを Main 関数の SearchButton にすることでしたが、これは機能しません。
それを行うための予見された方法は何ですか?