/** DGui project file.

Copyright: Trogu Antonio Davide 2011-2013

License: $(HTTP boost.org/LICENSE_1_0.txt, Boost License 1.0).

Authors: Trogu Antonio Davide
*/
module dguihub.layout.panel;

public import dguihub.layout.layoutcontrol;

class Panel : LayoutControl {
   protected override void createControlParams(ref CreateControlParams ccp) {
      ccp.className = WC_DPANEL;
      ccp.defaultCursor = SystemCursors.arrow;

      super.createControlParams(ccp);
   }
}