[prev in list] [next in list] [prev in thread] [next in thread] 

List:       kde-commits
Subject:    KDE/kdebase/apps/kdialog
From:       Laurent Montel <montel () kde ! org>
Date:       2008-07-27 11:31:51
Message-ID: 1217158311.011474.7836.nullmailer () svn ! kde ! org
[Download RAW message or body]

SVN commit 838244 by mlaurent:

kdialog is not generated by default in local


 M  +1 -1      progresscanceldemo  
 M  +1 -1      progressdemo  
 M  +18 -18    test  


--- trunk/KDE/kdebase/apps/kdialog/progresscanceldemo #838243:838244
@@ -1,4 +1,4 @@
-dbusRef=`./kdialog --progressbar "Press Cancel at Any time" 10`
+dbusRef=`kdialog --progressbar "Press Cancel at Any time" 10`
 qdbus $dbusRef org.kde.kdialog.ProgressDialog.showCancelButton true
 
 until test "true" = `qdbus $dbusRef org.kde.kdialog.ProgressDialog.wasCancelled`; do
--- trunk/KDE/kdebase/apps/kdialog/progressdemo #838243:838244
@@ -1,4 +1,4 @@
-dbusRef=`./kdialog --geometry 300x200+100-100 --progressbar "Initialising" 6`
+dbusRef=`kdialog --geometry 300x200+100-100 --progressbar "Initialising" 6`
 qdbus $dbusRef Set org.kde.kdialog.ProgressDialog value 1
 qdbus $dbusRef setLabelText "Thinking really hard"
 sleep 2
--- trunk/KDE/kdebase/apps/kdialog/test #838243:838244
@@ -1,5 +1,5 @@
 echo "yesno box:"
-./kdialog --geometry 400x300+100+50 --title "This is a yesno box" --yesno "Choose: \
yes or no" +kdialog --geometry 400x300+100+50 --title "This is a yesno box" --yesno \
"Choose: yes or no"  if [ $? = 0 ]; then
   echo " your choice was: yes"
 else
@@ -7,7 +7,7 @@
 fi
 
 echo "continue or cancel warning box:"
-./kdialog --geometry 200x300+100-50 --title "This is a warningcontinuecancel box" \
--warningcontinuecancel "Choose: continue or cancel" +kdialog --geometry \
200x300+100-50 --title "This is a warningcontinuecancel box" --warningcontinuecancel \
"Choose: continue or cancel"  if [ $? = 0 ]; then
   echo " your choice was: continue"
 else
@@ -15,10 +15,10 @@
 fi
 
 echo "message box:"
-./kdialog --geometry 300x400-100-50 --title "This is a message" --msgbox "Well, this \
is it:\nthe message" +kdialog --geometry 300x400-100-50 --title "This is a message" \
--msgbox "Well, this is it:\nthe message"  
 echo "input box:"
-./kdialog --title "This is a input box" --inputbox "What is your name" "Joe User"
+kdialog --title "This is a input box" --inputbox "What is your name" "Joe User"
 if [ $? = 0 ]; then
   echo " you accepted"
 else
@@ -26,7 +26,7 @@
 fi
 
 echo "input box, with geometry:"
-./kdialog --geometry 300x400-100-50 --title "This is a input box" --inputbox "What \
is your name" "Joe User" +kdialog --geometry 300x400-100-50 --title "This is a input \
box" --inputbox "What is your name" "Joe User"  if [ $? = 0 ]; then
   echo " you accepted"
 else
@@ -34,40 +34,40 @@
 fi
 
 echo "text box:"
-./kdialog --geometry 300x400-100-50 --icon "about-kde" --title "This is a text box" \
--textbox widgets.h 400 300 +kdialog --geometry 300x400-100-50 --icon "about-kde" \
--title "This is a text box" --textbox widgets.h 400 300  
 echo "menu:"
-./kdialog --icon "about-kde" --geometry 300x400-100-50 --title "This is a menu" \
--default "French" --menu "Choose one of these" a English b German c French d Spanish \
+kdialog --icon "about-kde" --geometry 300x400-100-50 --title "This is a menu" \
--default "French" --menu "Choose one of these" a English b German c French d Spanish \
  echo "checklist:"
-./kdialog --geometry 400x300+100+50 --icon "about-kde" --title "This is a checklist" \
--checklist "Choose some of these" a English on  b German off  c French off d Spanish \
on +kdialog --geometry 400x300+100+50 --icon "about-kde" --title "This is a \
checklist" --checklist "Choose some of these" a English on  b German off  c French \
off d Spanish on  
 echo "radiolist:"
-./kdialog --geometry 400x300+100+50 --icon "about-kde" --title "This is a radiolist" \
--radiolist "Choose one of these" a English off b German off c French on d Spanish \
off +kdialog --geometry 400x300+100+50 --icon "about-kde" --title "This is a \
radiolist" --radiolist "Choose one of these" a English off b German off c French on d \
Spanish off  
 echo "combobox:"
-./kdialog --geometry 400x300+100+50 --icon "about-kde" --default "Chocolate" --title \
"This is a combobox" --combobox "Pick your favorite ice-cream flavor:" "Vanilla" \
"Chocolate" "Strawberry" "Fudge" +kdialog --geometry 400x300+100+50 --icon \
"about-kde" --default "Chocolate" --title "This is a combobox" --combobox "Pick your \
favorite ice-cream flavor:" "Vanilla" "Chocolate" "Strawberry" "Fudge"  
 echo "passivepopup:"
-./kdialog --geometry 1x1+200+350 --title "This is a passive popup" --passivepopup \
"It will disappear in about 10 seconds" 10 +kdialog --geometry 1x1+200+350 --title \
"This is a passive popup" --passivepopup "It will disappear in about 10 seconds" 10  
 echo "password:"
-./kdialog --title "This is a password dialog" --geometry 400x300+100+50 --icon \
"desktop" --icon "about-kde" --password "Enter the password:" +kdialog --title "This \
is a password dialog" --geometry 400x300+100+50 --icon "desktop" --icon "about-kde" \
--password "Enter the password:"  
 echo "Open File:"
-./kdialog --getopenfilename . "*.cpp *.cc *.c |C and C++ Source Files"
+kdialog --getopenfilename . "*.cpp *.cc *.c |C and C++ Source Files"
 
 echo "Open multiple files:"
-./kdialog --multiple --getopenfilename . "*.cpp *.cc *.c |C and C++ Source Files"
+kdialog --multiple --getopenfilename . "*.cpp *.cc *.c |C and C++ Source Files"
 
 echo "Open multiple files, output on separate lines:"
-./kdialog --multiple --separate-output --getopenfilename . "*.cpp *.cc *.c |C and \
C++ Source Files" +kdialog --multiple --separate-output --getopenfilename . "*.cpp \
*.cc *.c |C and C++ Source Files"  
 echo "Open URL:"
-./kdialog --getopenurl . "*.cpp *.cc *.c |C and C++ Source Files"
+kdialog --getopenurl . "*.cpp *.cc *.c |C and C++ Source Files"
 
 echo "Open multiple URLs:"
-./kdialog --multiple --getopenurl . "*.cpp *.cc *.c |C and C++ Source Files"
+kdialog --multiple --getopenurl . "*.cpp *.cc *.c |C and C++ Source Files"
 
 echo "Open multiple URLs, output on separate lines:"
-./kdialog --multiple --separate-output --getopenurl . "*.cpp *.cc *.c |C and C++ \
Source Files" +kdialog --multiple --separate-output --getopenurl . "*.cpp *.cc *.c |C \
and C++ Source Files"


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic