Curl Global Community
View.get-default-owner が取得できない? - Printable Version

+- Curl Global Community (https://communities.curl.com)
+-- Forum: Discussions (https://communities.curl.com/forumdisplay.php?fid=1)
+--- Forum: General Curl questions (https://communities.curl.com/forumdisplay.php?fid=2)
+--- Thread: View.get-default-owner が取得できない? (/showthread.php?tid=1087)



View.get-default-owner が取得できない? - umemura - 05-22-2014

Dialog を継承したクラスで、showメソッドをオーバーライドしたいのですが、
引数 owner? の初期値として、 {View.get-default-owner} を指定すると、
「アクセスコードが同じパッケージないため・・・」と、エラーになってしまいます。

{View.get-default-owner} を取得する方法はないのでしょうか。

Code:
{define-class public CustomDialog {inherits Dialog}
  {constructor public {default ...}
    {construct-super {splice ...}}
  }
  {method public {show
                     title:String = {host-localize "Pop-up Window"},
                     modal?:bool = true,
                     center?:bool = true,
                     owner:#View = {View.get-default-owner},
                     style:DialogStyle = DialogStyle.standard,
                     large-icon:#Pixmap = null,
                     small-icon:#Pixmap = null
                 }:void
    {super.show
        title = title,
        modal? = modal?,
        center? = center?,
        owner = owner,
        style = style,
        large-icon = large-icon,
        small-icon = small-icon
    }
  }
}



RE: View.get-default-owner が取得できない? - tdeng - 12-02-2014

'View.get-default-owner' is not a public API for internal use only, and cannot be accessed from developers's code directly.