001package org.vishia.gral.widget; 002 003import org.vishia.gral.base.GralHtmlBox; 004import org.vishia.gral.base.GralTextBox; 005import org.vishia.gral.base.GralWindow; 006 007public final class GralHtmlWindow 008{ 009 /**The window is created invoking the {@link GralMngBuild_ifc#createWindow(String, boolean)}. 010 * It has its implementation in the underlying graphic system. */ 011 private final GralWindow window; 012 013 014 /**The widget which holds the text in the {@link #window}. */ 015 private final GralTextBox textBox; 016 017 private final GralHtmlBox htmlBox; 018 019 public GralHtmlWindow(GralWindow window, GralHtmlBox htmlBox) 020 { 021 this.window = window; 022 this.textBox = null; 023 this.htmlBox = htmlBox; 024 } 025 026}