Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bb5985f99c7390e810130fdb401bbf0052b7c8dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*******************************************************************************
 * Copyright (c) 2018 Red Hat and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Red Hat - initial API and implementation
 *******************************************************************************/
package org.eclipse.swt.tests.gtk.snippets;


import org.eclipse.swt.SWT;
import org.eclipse.swt.custom.CLabel;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Group;
import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Shell;


public class Bug221955_BackgroundModeQT {

  public static void main( final String[] args ) {
    Display display = new Display();
    Shell shell = new Shell( display );
    shell.setText( "BackgroundMode" );
    createContent( shell );
    shell.pack();
    shell.open();
    while( !shell.isDisposed() ) {
      if( !display.readAndDispatch() )
        display.sleep();
    }
    display.dispose();
  }

  private static void createContent( final Composite parent ) {
    parent.setLayout( new GridLayout( 4, false ) );
    Color bgColor = parent.getDisplay().getSystemColor( SWT.COLOR_RED );
    
    Group group1 = new Group( parent, SWT.NONE );
    group1.setBackground( bgColor );
    group1.setBackgroundMode( SWT.INHERIT_NONE );
    group1.setText( "INHERIT_NONE" );
    createControls( group1 );
    
    Group group2 = new Group( parent, SWT.NONE );
    group2.setBackground( bgColor );
    group2.setBackgroundMode( SWT.INHERIT_DEFAULT );
    group2.setText( "INHERIT_DEFAULT" );
    createControls( group2 );
    
    Group group3 = new Group( parent, SWT.NONE );
    group3.setBackground( bgColor );
    group3.setBackgroundMode( SWT.INHERIT_FORCE );
    group3.setText( "INHERIT_FORCE" );
    createControls( group3 );
  }

  private static void createControls( final Composite parent ) {
    parent.setLayout( new GridLayout() );
    Label label = new Label( parent, SWT.NONE );
    label.setText( "Test Label" );
    Label blueLabel = new Label( parent, SWT.NONE );
    blueLabel.setText( "Blue Label" );
    blueLabel.setBackground( parent.getDisplay().getSystemColor( SWT.COLOR_BLUE ) );
    CLabel clabel = new CLabel( parent, SWT.NONE );
    clabel.setText( "Test CLabel" );
    Button button = new Button( parent, SWT.PUSH );
    button.setText( "Test Button" );
    Button checkbox = new Button( parent, SWT.CHECK );
    checkbox.setText( "Test Checkbox" );
    List list = new List( parent, SWT.BORDER );
    list.add( "Test List" );
    list.add( "" );
  }
}

Back to the top