01: /*
02: * Copyright 2005-2008 Kirill Grouchnikov, based on work by
03: * Sun Microsystems, Inc. All rights reserved.
04: *
05: * This library is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU Lesser General Public
07: * License as published by the Free Software Foundation; either
08: * version 2.1 of the License, or (at your option) any later version.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, write to the Free Software
17: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18: */
19: package docrobot;
20:
21: import java.awt.FlowLayout;
22: import java.util.Calendar;
23:
24: import javax.swing.*;
25:
26: import org.jdesktop.swingx.JXMonthView;
27: import org.jvnet.substance.skin.SubstanceBusinessBlackSteelLookAndFeel;
28:
29: public class MonthViewFrame extends JFrame {
30: public MonthViewFrame() {
31: super ("JXMonthView example");
32:
33: Calendar cal = Calendar.getInstance();
34: cal.add(Calendar.DAY_OF_MONTH, 4);
35: JXMonthView monthView = new JXMonthView();
36: monthView.setShowLeadingDates(true);
37: monthView.setShowTrailingDates(true);
38: monthView.setShowingWeekNumber(true);
39:
40: this .setLayout(new FlowLayout(FlowLayout.CENTER));
41: this .add(monthView);
42:
43: this .setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
44: this .setSize(350, 250);
45: this .setLocationRelativeTo(null);
46: }
47:
48: public static void main(String[] args) throws Exception {
49: JFrame.setDefaultLookAndFeelDecorated(true);
50: UIManager
51: .setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
52: // UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
53: SwingUtilities.invokeLater(new Runnable() {
54: public void run() {
55: new MonthViewFrame().setVisible(true);
56: }
57: });
58: }
59: }
|