Skip to content

Commit

Permalink
Lihat lisensi.txt/README.txt bro. Belum Fix, Perjalanan masih panjang…
Browse files Browse the repository at this point in the history
…....
  • Loading branch information
mas-elkhanza committed Nov 14, 2018
1 parent b941acb commit 15c24fe
Show file tree
Hide file tree
Showing 1,261 changed files with 2,055 additions and 2,057 deletions.
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/Button.java
Expand Up @@ -17,7 +17,7 @@ public class Button extends usu.widget.ButtonGlass {
public Button() {
super();
setFont(new java.awt.Font("Tahoma", 1, 11));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setGlassColor(new Color(235,240,230));
setMargin(new Insets(2, 7, 2, 7));
setIconTextGap(4);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/ButtonBig.java
Expand Up @@ -32,7 +32,7 @@ public class ButtonBig extends ButtonImageReflection {

public ButtonBig() {
super();
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));
}
}
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/CekBox.java
Expand Up @@ -22,7 +22,7 @@ public CekBox(){
//setBackground(new Color(209,209,209));
//setForeground(new Color(90,90,90));
setBackground(new Color(248,253,243));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);

this.setBorder(javax.swing.BorderFactory.createLineBorder(new Color(237,242,232)));
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/ComboBox.java
Expand Up @@ -17,7 +17,7 @@ public final class ComboBox extends JComboBox {
public ComboBox(){
setFont(new java.awt.Font("Tahoma", 0, 11));
setBackground(new Color(248,253,243));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setSize(WIDTH,23);
}
}
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/Label.java
Expand Up @@ -17,7 +17,7 @@ public class Label extends usu.widget.Label {
public Label() {
super();
//setForeground(new Color(90,90,90));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));

setHorizontalAlignment(RIGHT);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/RadioButton.java
Expand Up @@ -23,7 +23,7 @@ public RadioButton(){
//setForeground(new Color(90,90,90));
//setBackground(new Color(245,170,245));
setBackground(new Color(250,255,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);
setBorder(new EmptyBorder(1,1,1,1));
setOpaque(false);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/TabPane.java
Expand Up @@ -15,7 +15,7 @@ public class TabPane extends JTabbedPane {
public TabPane(){
super();
setBackground(new Color(250,255,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
//this.setBorder(javax.swing.BorderFactory.createLineBorder(new Color(245,140,245)));
}
}
4 changes: 2 additions & 2 deletions KhanzaAntrianLoket/src/widget/Table.java
Expand Up @@ -21,12 +21,12 @@ public Table() {
//setForeground(new Color(90,90,90));
setBackground(new Color(255,255,255));
setGridColor(new Color(237,242,232));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));
setRowHeight(22);
setSelectionBackground(new Color(255,255,255));
setSelectionForeground(new Color(100,100,0));
getTableHeader().setForeground(new Color(100,80,80));
getTableHeader().setForeground(new Color(70,70,70));
getTableHeader().setBackground(new Color(248,253,243));
getTableHeader().setBorder(javax.swing.BorderFactory.createLineBorder(new Color(248,253,243)));
getTableHeader().setFont(new java.awt.Font("Tahoma", 0, 11));
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/Tanggal.java
Expand Up @@ -17,7 +17,7 @@ public Tanggal(){
super();
//setBackground(new Color(245,160,245));
//setForeground(new Color(90,90,90));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setBackground(new Color(248,253,243));
setFont(new java.awt.Font("Tahoma", 0, 11));
//setBorder(javax.swing.BorderFactory.createLineBorder(new Color(212,212,152)));
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/TextArea.java
Expand Up @@ -35,7 +35,7 @@ public TextArea() {
setFont(new java.awt.Font("Tahoma", 0, 11));
setSelectionColor(new Color(50,51,0));
setSelectedTextColor(new Color(255,255,0));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setBackground(new Color(250,255,245));
setSize(WIDTH,23);
setSize(WIDTH,23);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianLoket/src/widget/TextBox.java
Expand Up @@ -14,7 +14,7 @@ public TextBox() {
setFont(new java.awt.Font("Tahoma", 0, 11));
setSelectionColor(new Color(50,51,0));
setSelectedTextColor(new Color(255,255,0));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setBackground(new Color(250,255,245));
setHorizontalAlignment(LEFT);
setSize(WIDTH,23);
Expand Down
14 changes: 7 additions & 7 deletions KhanzaAntrianPoli/src/khanzaantrianpoli/DlgAntrian.java
Expand Up @@ -413,7 +413,7 @@ private void initComponents() {

ppAntri1.setBackground(new java.awt.Color(255, 255, 255));
ppAntri1.setFont(new java.awt.Font("Tahoma", 0, 11)); // NOI18N
ppAntri1.setForeground(new java.awt.Color(100,80,80));
ppAntri1.setForeground(new java.awt.Color(70,70,70));
ppAntri1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/011.png"))); // NOI18N
ppAntri1.setText("Masukkan Antrian");
ppAntri1.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand All @@ -430,7 +430,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

ppUndo1.setBackground(new java.awt.Color(255, 255, 255));
ppUndo1.setFont(new java.awt.Font("Tahoma", 0, 11)); // NOI18N
ppUndo1.setForeground(new java.awt.Color(100,80,80));
ppUndo1.setForeground(new java.awt.Color(70,70,70));
ppUndo1.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/101.png"))); // NOI18N
ppUndo1.setText("Batal Periksa");
ppUndo1.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand All @@ -450,7 +450,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

ppAntri2.setBackground(new java.awt.Color(255, 255, 255));
ppAntri2.setFont(new java.awt.Font("Tahoma", 0, 11)); // NOI18N
ppAntri2.setForeground(new java.awt.Color(100,80,80));
ppAntri2.setForeground(new java.awt.Color(70,70,70));
ppAntri2.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/011.png"))); // NOI18N
ppAntri2.setText("Masukkan Antrian");
ppAntri2.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand All @@ -467,7 +467,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

ppUndo2.setBackground(new java.awt.Color(255, 255, 255));
ppUndo2.setFont(new java.awt.Font("Tahoma", 0, 11)); // NOI18N
ppUndo2.setForeground(new java.awt.Color(100,80,80));
ppUndo2.setForeground(new java.awt.Color(70,70,70));
ppUndo2.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/101.png"))); // NOI18N
ppUndo2.setText("Batal Periksa");
ppUndo2.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand All @@ -487,7 +487,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

ppAntri3.setBackground(new java.awt.Color(255, 255, 255));
ppAntri3.setFont(new java.awt.Font("Tahoma", 0, 11)); // NOI18N
ppAntri3.setForeground(new java.awt.Color(100,80,80));
ppAntri3.setForeground(new java.awt.Color(70,70,70));
ppAntri3.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/011.png"))); // NOI18N
ppAntri3.setText("Masukkan Antrian");
ppAntri3.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand All @@ -504,7 +504,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

ppUndo3.setBackground(new java.awt.Color(255, 255, 255));
ppUndo3.setFont(new java.awt.Font("Tahoma", 0, 11)); // NOI18N
ppUndo3.setForeground(new java.awt.Color(100,80,80));
ppUndo3.setForeground(new java.awt.Color(70,70,70));
ppUndo3.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/101.png"))); // NOI18N
ppUndo3.setText("Batal Periksa");
ppUndo3.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand All @@ -524,7 +524,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

ppClose.setBackground(new java.awt.Color(255, 255, 255));
ppClose.setFont(new java.awt.Font("Tahoma", 0, 11)); // NOI18N
ppClose.setForeground(new java.awt.Color(100,80,80));
ppClose.setForeground(new java.awt.Color(70,70,70));
ppClose.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/101.png"))); // NOI18N
ppClose.setText("Tutup Display");
ppClose.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand Down
6 changes: 3 additions & 3 deletions KhanzaAntrianPoli/src/khanzaantrianpoli/DlgCariDokter.java
Expand Up @@ -160,7 +160,7 @@ private void initComponents() {
Popup.setName("Popup"); // NOI18N

ppOrder.setBackground(new java.awt.Color(242, 242, 242));
ppOrder.setForeground(new java.awt.Color(100,80,80));
ppOrder.setForeground(new java.awt.Color(70,70,70));
ppOrder.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/190.png"))); // NOI18N
ppOrder.setText("Urutkan Berdasar");
ppOrder.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N
Expand All @@ -169,7 +169,7 @@ private void initComponents() {

ppOrderKode.setBackground(new java.awt.Color(255, 255, 255));
ppOrderKode.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N
ppOrderKode.setForeground(new java.awt.Color(100,80,80));
ppOrderKode.setForeground(new java.awt.Color(70,70,70));
ppOrderKode.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/190.png"))); // NOI18N
ppOrderKode.setText("Kode Dokter");
ppOrderKode.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand All @@ -186,7 +186,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {

ppOrderNama.setBackground(new java.awt.Color(255, 255, 255));
ppOrderNama.setFont(new java.awt.Font("Tahoma", 0, 12)); // NOI18N
ppOrderNama.setForeground(new java.awt.Color(100,80,80));
ppOrderNama.setForeground(new java.awt.Color(70,70,70));
ppOrderNama.setIcon(new javax.swing.ImageIcon(getClass().getResource("/picture/190.png"))); // NOI18N
ppOrderNama.setText("Nama Dokter");
ppOrderNama.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/Button.java
Expand Up @@ -17,7 +17,7 @@ public class Button extends usu.widget.ButtonGlass {
public Button() {
super();
setFont(new java.awt.Font("Tahoma", 1, 11));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setGlassColor(new Color(235,240,230));
setMargin(new Insets(2, 7, 2, 7));
setIconTextGap(4);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/ButtonBig.java
Expand Up @@ -32,7 +32,7 @@ public class ButtonBig extends ButtonImageReflection {

public ButtonBig() {
super();
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));
}
}
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/CekBox.java
Expand Up @@ -22,7 +22,7 @@ public CekBox(){
//setBackground(new Color(209,209,209));
//setForeground(new Color(90,90,90));
setBackground(new Color(248,253,243));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);

this.setBorder(javax.swing.BorderFactory.createLineBorder(new Color(237,242,232)));
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/ComboBox.java
Expand Up @@ -17,7 +17,7 @@ public final class ComboBox extends JComboBox {
public ComboBox(){
setFont(new java.awt.Font("Tahoma", 0, 11));
setBackground(new Color(248,253,243));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setSize(WIDTH,23);
}
}
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/Label.java
Expand Up @@ -17,7 +17,7 @@ public class Label extends usu.widget.Label {
public Label() {
super();
//setForeground(new Color(90,90,90));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));

setHorizontalAlignment(RIGHT);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/RadioButton.java
Expand Up @@ -23,7 +23,7 @@ public RadioButton(){
//setForeground(new Color(90,90,90));
//setBackground(new Color(245,170,245));
setBackground(new Color(250,255,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);
setBorder(new EmptyBorder(1,1,1,1));
setOpaque(false);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/TabPane.java
Expand Up @@ -15,7 +15,7 @@ public class TabPane extends JTabbedPane {
public TabPane(){
super();
setBackground(new Color(250,255,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
//this.setBorder(javax.swing.BorderFactory.createLineBorder(new Color(245,140,245)));
}
}
4 changes: 2 additions & 2 deletions KhanzaAntrianPoli/src/widget/Table.java
Expand Up @@ -21,12 +21,12 @@ public Table() {
//setForeground(new Color(90,90,90));
setBackground(new Color(255,255,255));
setGridColor(new Color(237,242,232));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));
setRowHeight(22);
setSelectionBackground(new Color(255,255,255));
setSelectionForeground(new Color(100,100,0));
getTableHeader().setForeground(new Color(100,80,80));
getTableHeader().setForeground(new Color(70,70,70));
getTableHeader().setBackground(new Color(248,253,243));
getTableHeader().setBorder(javax.swing.BorderFactory.createLineBorder(new Color(248,253,243)));
getTableHeader().setFont(new java.awt.Font("Tahoma", 0, 11));
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/Tanggal.java
Expand Up @@ -17,7 +17,7 @@ public Tanggal(){
super();
//setBackground(new Color(245,160,245));
//setForeground(new Color(90,90,90));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setBackground(new Color(248,253,243));
setFont(new java.awt.Font("Tahoma", 0, 11));
//setBorder(javax.swing.BorderFactory.createLineBorder(new Color(212,212,152)));
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/TextArea.java
Expand Up @@ -35,7 +35,7 @@ public TextArea() {
setFont(new java.awt.Font("Tahoma", 0, 11));
setSelectionColor(new Color(50,51,0));
setSelectedTextColor(new Color(255,255,0));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setBackground(new Color(250,255,245));
setSize(WIDTH,23);
setSize(WIDTH,23);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaAntrianPoli/src/widget/TextBox.java
Expand Up @@ -14,7 +14,7 @@ public TextBox() {
setFont(new java.awt.Font("Tahoma", 0, 11));
setSelectionColor(new Color(50,51,0));
setSelectedTextColor(new Color(255,255,0));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setBackground(new Color(250,255,245));
setHorizontalAlignment(LEFT);
setSize(WIDTH,23);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaHMSAnjungan/src/component/RadioButton.java
Expand Up @@ -23,7 +23,7 @@ public RadioButton(){
//setForeground(new Color(90,90,90));
//setBackground(new Color(245,170,245));
setBackground(new Color(245,190,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);
setBorder(new EmptyBorder(1,1,1,1));
setOpaque(false);
Expand Down
Expand Up @@ -23,7 +23,7 @@ public RadioButton(){
//setForeground(new Color(90,90,90));
//setBackground(new Color(245,170,245));
setBackground(new Color(245,190,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);
setBorder(new EmptyBorder(1,1,1,1));
setOpaque(false);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaHMSAutoVerify/src/widget/Button.java
Expand Up @@ -17,7 +17,7 @@ public class Button extends usu.widget.ButtonGlass {
public Button() {
super();
setFont(new java.awt.Font("Tahoma", 1, 11));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setGlassColor(new Color(235,240,230));
setMargin(new Insets(2, 7, 2, 7));
setIconTextGap(4);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaHMSAutoVerify/src/widget/ButtonBig.java
Expand Up @@ -32,7 +32,7 @@ public class ButtonBig extends ButtonImageReflection {

public ButtonBig() {
super();
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));
}
}
2 changes: 1 addition & 1 deletion KhanzaHMSAutoVerify/src/widget/CekBox.java
Expand Up @@ -22,7 +22,7 @@ public CekBox(){
//setBackground(new Color(209,209,209));
//setForeground(new Color(90,90,90));
setBackground(new Color(248,253,243));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);

this.setBorder(javax.swing.BorderFactory.createLineBorder(new Color(237,242,232)));
Expand Down
2 changes: 1 addition & 1 deletion KhanzaHMSAutoVerify/src/widget/ComboBox.java
Expand Up @@ -17,7 +17,7 @@ public final class ComboBox extends JComboBox {
public ComboBox(){
setFont(new java.awt.Font("Tahoma", 0, 11));
setBackground(new Color(248,253,243));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setSize(WIDTH,23);
}
}
2 changes: 1 addition & 1 deletion KhanzaHMSAutoVerify/src/widget/Label.java
Expand Up @@ -17,7 +17,7 @@ public class Label extends usu.widget.Label {
public Label() {
super();
//setForeground(new Color(90,90,90));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));

setHorizontalAlignment(RIGHT);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaHMSAutoVerify/src/widget/RadioButton.java
Expand Up @@ -23,7 +23,7 @@ public RadioButton(){
//setForeground(new Color(90,90,90));
//setBackground(new Color(245,170,245));
setBackground(new Color(250,255,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFocusPainted(false);
setBorder(new EmptyBorder(1,1,1,1));
setOpaque(false);
Expand Down
2 changes: 1 addition & 1 deletion KhanzaHMSAutoVerify/src/widget/TabPane.java
Expand Up @@ -15,7 +15,7 @@ public class TabPane extends JTabbedPane {
public TabPane(){
super();
setBackground(new Color(250,255,245));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
//this.setBorder(javax.swing.BorderFactory.createLineBorder(new Color(245,140,245)));
}
}
4 changes: 2 additions & 2 deletions KhanzaHMSAutoVerify/src/widget/Table.java
Expand Up @@ -21,12 +21,12 @@ public Table() {
//setForeground(new Color(90,90,90));
setBackground(new Color(255,255,255));
setGridColor(new Color(237,242,232));
setForeground(new Color(100,80,80));
setForeground(new Color(70,70,70));
setFont(new java.awt.Font("Tahoma", 0, 11));
setRowHeight(22);
setSelectionBackground(new Color(255,255,255));
setSelectionForeground(new Color(100,100,0));
getTableHeader().setForeground(new Color(100,80,80));
getTableHeader().setForeground(new Color(70,70,70));
getTableHeader().setBackground(new Color(248,253,243));
getTableHeader().setBorder(javax.swing.BorderFactory.createLineBorder(new Color(248,253,243)));
getTableHeader().setFont(new java.awt.Font("Tahoma", 0, 11));
Expand Down

0 comments on commit 15c24fe

Please sign in to comment.