GWT - Widget HTMLPanel

introduction

le HTMLPanel widget représente un panneau qui contient du HTML et qui peut attacher des widgets enfants à des éléments identifiés dans ce HTML.

Déclaration de classe

Voici la déclaration pour com.google.gwt.user.client.ui.HTMLPanel classe -

public class HTMLPanel
   extends ComplexPanel

Constructeurs de classe

N ° Sr. Constructeur et description
1

HTMLPanel(SafeHtml safeHtml)

Initialise le HTML du panneau à partir d'un objet SafeHtml donné.

2

HTMLPanel(java.lang.String html)

Crée un panneau HTML avec le contenu HTML spécifié à l'intérieur d'un élément DIV.

3

HTMLPanel(java.lang.String tag, java.lang.String html)

Crée un panneau HTML dont l'élément racine a la balise donnée et avec le contenu HTML spécifié.

Méthodes de classe

N ° Sr. Nom et description de la fonction
1

void add(Widget widget, Element elem)

Ajoute un widget enfant au panneau, contenu dans un élément HTML.

2

void add(Widget widget, java.lang.String id)

Ajoute un widget enfant au panneau, contenu dans l'élément HTML spécifié par un identifiant donné.

3

void addAndReplaceElement(Widget widget, Element toReplace)

Ajoute un widget enfant au panneau, en remplaçant l'élément HTML.

4

void addAndReplaceElement(Widget widget, java.lang.String id)

Ajoute un widget enfant au panneau, en remplaçant l'élément HTML spécifié par un identifiant donné.

5

static java.lang.String createUniqueId()

Une méthode d'assistance pour créer des identifiants uniques pour les éléments au sein d'un code HTML généré dynamiquement.

6

Element getElementById(java.lang.String id)

Recherche un élément dans ce panneau par son identifiant.

Méthodes héritées

Cette classe hérite des méthodes des classes suivantes -

  • com.google.gwt.user.client.ui.UIObject

  • com.google.gwt.user.client.ui.Widget

  • com.google.gwt.user.client.ui.Panel

  • com.google.gwt.user.client.ui.ComplexPanel

  • java.lang.Object

Exemple de widget HTMLPanel

Cet exemple vous guidera à travers des étapes simples pour montrer l'utilisation d'un widget HTMLPanel dans GWT. Suivez les étapes suivantes pour mettre à jour l'application GWT que nous avons créée dans GWT - Chapitre Créer une application -

Étape La description
1 Créez un projet avec un nom HelloWorld sous un package com.tutorialspoint comme expliqué dans le chapitre GWT - Créer une application .
2 Modifiez HelloWorld.gwt.xml , HelloWorld.css , HelloWorld.html et HelloWorld.java comme expliqué ci-dessous. Gardez le reste des fichiers inchangé.
3 Compilez et exécutez l'application pour vérifier le résultat de la logique implémentée.

Voici le contenu du descripteur de module modifié src/com.tutorialspoint/HelloWorld.gwt.xml.

<?xml version = "1.0" encoding = "UTF-8"?>
<module rename-to = 'helloworld'>
   <!-- Inherit the core Web Toolkit stuff.                        -->
   <inherits name = 'com.google.gwt.user.User'/>

   <!-- Inherit the default GWT style sheet.                       -->
   <inherits name = 'com.google.gwt.user.theme.clean.Clean'/>

   <!-- Specify the app entry point class.                         -->
   <entry-point class = 'com.tutorialspoint.client.HelloWorld'/>

   <!-- Specify the paths for translatable code                    -->
   <source path = 'client'/>
   <source path = 'shared'/>

</module>

Voici le contenu du fichier de feuille de style modifié war/HelloWorld.css.

body {
   text-align: center;
   font-family: verdana, sans-serif;
}

h1 {
   font-size: 2em;
   font-weight: bold;
   color: #777777;
   margin: 40px 0px 70px;
   text-align: center;
}

Voici le contenu du fichier hôte HTML modifié war/HelloWorld.html.

<html>
   <head>
      <title>Hello World</title>
      <link rel = "stylesheet" href = "HelloWorld.css"/>
      <script language = "javascript" src = "helloworld/helloworld.nocache.js">
      </script>
   </head>

   <body>
      <h1>HTMLPanel Widget Demonstration</h1>
      <div id = "gwtContainer"></div>
   </body>
</html>

Laissez-nous avoir le contenu suivant du fichier Java src/com.tutorialspoint/HelloWorld.java qui démontrera l'utilisation du widget HTMLPanel.

package com.tutorialspoint.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.DecoratorPanel;
import com.google.gwt.user.client.ui.HTMLPanel;
import com.google.gwt.user.client.ui.RootPanel;

public class HelloWorld implements EntryPoint {
   public void onModuleLoad() {
      String htmlString = "This is a <b>HTMLPanel</b> containing"
         +" html contents. "
         +" <i>By putting some fairly large contents in the middle"
         +" and setting its size explicitly, it becomes a scrollable area"
         +" within the page, but without requiring the use of an IFRAME.</i>"
         +" <u>Here's quite a bit more meaningless text that will serve"
         +" to make this thing scroll off the bottom of its visible area."
         +" Otherwise, you might have to make it really, really"
         +" small in order to see the nifty scroll bars!</u>";

      HTMLPanel htmlPanel = new HTMLPanel(htmlString);

      DecoratorPanel panel = new DecoratorPanel();
      panel.add(htmlPanel);

      // Add the widgets to the root panel.
      RootPanel.get().add(panel);
   }
}

Une fois que vous êtes prêt avec tous les changements effectués, laissez-nous compiler et exécuter l'application en mode développement comme nous l'avons fait dans le chapitre GWT - Créer une application . Si tout va bien avec votre application, cela produira le résultat suivant -